I am attaching an example variable and the answer your code should result in should be 175 or the 174 index.
closest value to zero excluding the first one?
조회 수: 11 (최근 30일)
이전 댓글 표시
If given a long vector of values. How can I find the index of the closest value to zero excluding the first value of the vector out of our list of stuff to search for
채택된 답변
Ali Almakhmari
2023년 1월 12일
댓글 수: 1
Bruno Luong
2023년 1월 12일
That is NOT your question asks for, that is first consecutive points where 0 is cross from positive to negative.
추가 답변 (2개)
Bora Eryilmaz
2023년 1월 12일
편집: Bora Eryilmaz
2023년 1월 12일
load('var.mat')
[~,I] = sort(abs(dis_y), 'ascend');
% Closest value to 0:
dis_y(I(1))
% Second closest value to 0:
dis_y(I(2))
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!