Filter löschen
Filter löschen

location of 10 highest values

7 Ansichten (letzte 30 Tage)
Mate 2u
Mate 2u am 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.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 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.

Weitere Antworten (1)

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

Kategorien

Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by