First minimum larger than zero

14 views (last 30 days)
ph
ph on 7 Feb 2022
Commented: ph on 7 Feb 2022
Hi,
I'd like to know the first index (and eventually the value) of the minimum element larger than zero in a vector.
Exemple : a=[14,9,4,-1,-6,-11,9,4,-1] , I look for "3" (and eventually the value = 4)
Any suggestion is kindly appreciated
thanks
ph

Accepted Answer

KSSV
KSSV on 7 Feb 2022
a=[14,9,4,-1,-6,-11,9,4,-1] ;
[val,idx] = min(abs(a))
val = 1
idx = 4
  5 Comments
KSSV
KSSV on 7 Feb 2022
Thanks is accepting/ voting the answer. :)
ph
ph on 7 Feb 2022
Okok, needed to figure it out. Then you can edit the first answer with the comment you did after ;-)

Sign in to comment.

More Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!