location of 10 highest values

21 visualizzazioni (ultimi 30 giorni)
Mate 2u
Mate 2u il 25 Lug 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.

Risposta accettata

Walter Roberson
Walter Roberson il 25 Lug 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.

Più risposte (1)

the cyclist
the cyclist il 25 Lug 2012
Use the sort() command.

Categorie

Scopri di più su Shifting and Sorting Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by