find the 3 maximum elements and their index
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
hi everyone, i have a vector and i need to find the 3 maximum elements and their index, plz can anyone help me in that? thx
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Jonathan Sullivan
am 29 Feb. 2012
r = rand(100,1);
[val ind] = sort(r,'descend');
val(1:3)
ind(1:3)
r(ind(1:3))
2 Kommentare
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!