location of 10 highest values

17 views (last 30 days)
Mate 2u
Mate 2u on 25 Jul 2012
Hi all, I have a 1x34 matrix. I want to find the location of the 10 largest values. So the output should be 1x10 and have values like 2,3,6 etc......
Thank you.

Accepted Answer

Walter Roberson
Walter Roberson on 25 Jul 2012
[bigvalues, bigidx] = sort(YourMatrix, 'descend');
bigidx(1:10)
However, this is not suitable if your values might not be unique. Also, if your values might include NaN then you need to decide whether for your purpose NaN are high or not.

More Answers (1)

the cyclist
the cyclist on 25 Jul 2012
Use the sort() command.

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!