How can I find the maximum value in a matrix?
71 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can I find the maximum value in a matrix and find its column and row number of this value?
0 Commenti
Risposta accettata
Andrei Bobrov
il 14 Giu 2013
A = randi(100,7,6); % your matrix
v = max(A(:)); % value
[ii,jj] = find(A == v); % row and column number
0 Commenti
Più risposte (1)
Image Analyst
il 14 Giu 2013
maxValue = max(yourMatrix);
[row column] = find(yourMatrix==maxValue);
Or you can take the second returned argument from max() and use ind2sub().
0 Commenti
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping 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!