extracting rows with the highest value
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to extract a row that has the highest value in one of the columns for example:
1 3
4 6
2 5
8 1
I would want to extract the row of 8 1
0 Commenti
Risposta accettata
Torsten
il 11 Set 2022
A = [1 3
4 6
2 5
8 1];
[~,imax] = max(A(:));
[irow,~] = ind2sub(size(A),imax(1))
A(irow,:)
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB 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!