How can I find the maximum value in a matrix?
67 ビュー (過去 30 日間)
古いコメントを表示
How can I find the maximum value in a matrix and find its column and row number of this value?
0 件のコメント
採用された回答
Andrei Bobrov
2013 年 6 月 14 日
A = randi(100,7,6); % your matrix
v = max(A(:)); % value
[ii,jj] = find(A == v); % row and column number
0 件のコメント
その他の回答 (1 件)
Image Analyst
2013 年 6 月 14 日
maxValue = max(yourMatrix);
[row column] = find(yourMatrix==maxValue);
Or you can take the second returned argument from max() and use ind2sub().
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!