Getting minimum value from an array
1 回表示 (過去 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 件のコメント
Sean de Wolski
2012 年 4 月 3 日
look at the second part. Where we calculate the index after using find.
参考
カテゴリ
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!