how to know the indices of multiple max values?
41 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Jaybee
il 1 Ott 2013
Commentato: vimal kumar chawda
il 9 Lug 2021
hi there!
I'm having problem about identifying the indices(position) of a multiple max values.
example of input:
A=[4 5 9 9]
how can i know the indices of those 9's?
0 Commenti
Risposta accettata
Wayne King
il 1 Ott 2013
Modificato: Wayne King
il 1 Ott 2013
One way:
A = [4 5 9 9];
maxval = max(A);
lia = ismember(A,maxval);
idx = find(lia);
or shorter
maxval = max(A);
idx = find(A == maxval);
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrices and Arrays 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!