Find the index of the lowest number greater than zero in a vector

12 次查看(过去 30 天)
I would like to find the index of the lowest number greater than zero in a vector. ex: [0,0,4,5,0] The answer should be 3 because 4 is the third element.

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2016-8-22
A(A==0)=inf
[~,idx]=min(A)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Operators and Elementary Operations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by