Getting minimum value from an array
2 次查看(过去 30 天)
显示 更早的评论
I want to get min of A= [0, 20, 15]. Actualy I want to find the minimum excluding the zero. So in the example my answer would be 15 not zero. Finaly I want to get the index of the minimum value. What I have done so far looks like:
for i=1:size(A)
if A(i)~=0
[index,c]=find(min(A));
end
end
but it is not giving me the results I want.
0 个评论
采纳的回答
更多回答(1 个)
Sean de Wolski
2012-4-3
[val index] = min(A(~~A))
If you wanted the index involving zeros, find it after
index = find(A==val,1,'first')
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!