closest value to zero excluding the first one?
Show older comments
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
Accepted Answer
More Answers (2)
out of our list of stuff to search for
?
v = [-0.1 2 4 -0.5 8];
[~,i] = min(abs(v(2:end)))
v(i+1)
3 Comments
Image Analyst
on 12 Jan 2023
"out of our list of stuff to search for" <= He's searching FOR the index, so I think he really meant "out of our list of stuff to search", which is basically what @Torsten did. (No problem - non native English speakers probably don't know subtleties like that) The index would be
index = i+1;
Ali Almakhmari
on 12 Jan 2023
Edited: Ali Almakhmari
on 12 Jan 2023
Ali Almakhmari
on 12 Jan 2023
Bora Eryilmaz
on 12 Jan 2023
Edited: Bora Eryilmaz
on 12 Jan 2023
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))
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!