find array indices of minimum value in a 2Darray
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I have a 2d array with a minimum vakue of 50
How do I find the array indices for this value?
0 Commenti
Risposte (2)
Walter Roberson
il 31 Gen 2021
[r, c] = find(A==min(A, [], 'all');
5 Commenti
Walter Roberson
il 31 Gen 2021
[~, linearidx] = min(A(:));
[r,c,p] = ind2sub(size(A), linearidx);
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!