How to find the nine biggest numbers?
2 ビュー (過去 30 日間)
古いコメントを表示
I have a n*n matrix and I want to find nine biggest numbers in it. How can I do it in MATLAB?
0 件のコメント
採用された回答
その他の回答 (1 件)
David Sanchez
2013 年 6 月 21 日
Sort your matrix in descending order:
m = rand(5,4); % example matrix
[rows cols] = size(m);
m2 = reshape(m,rows*cols,1);
xx = sort(m2,'descend')
grab the elements you want
my_elements = xx(1:9);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Polygons についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!