how to find out position of minimum element in a matrix
9 ビュー (過去 30 日間)
古いコメントを表示
a=[8 2 5;2 -2 4;9 5 4] here position of minimum value is 2*2
0 件のコメント
採用された回答
Rik
2018 年 5 月 7 日
a=[8 2 5;2 -2 4;9 5 4] ;
[r,c]=find(a==min(a(:)));
This will even work if there are multiple positions where the minimum value exists: in that case r and c will be vectors.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!