10 Largest numbers in a matrix

4 次查看(过去 30 天)
Md
Md 2015-3-4
how to find 10 biggest numbers from a Matrix, also how to find the indexes of those 10 biggest numbers in the matrix. Thanks.
  1 个评论
Daniel
Daniel 2015-3-4
Are you asking for a specific command, or how to go about creating a program that will get you that result from a series of calculations replicating what you yourself would do "by inspection"?
It should be straightforward how to do the latter. I don't think I can help with the former.

请先登录,再进行评论。

回答(1 个)

per isakson
per isakson 2015-3-4
The largest value of magic(7) is 49
M = magic(7);
[ val, ix ] = sort(M(:),'descend');
[rr,cc] = ind2sub( [7,7],ix(1:10) );
>> [rr(1),cc(1)]
ans =
7 4
>> M(rr(1),cc(1))
ans =
49
>> M(rr(10),cc(10))
ans =
40
is one way to find the 10 largest values

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by