How to find the nine biggest numbers?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a n*n matrix and I want to find nine biggest numbers in it. How can I do it in MATLAB?
0 commentaires
Réponse acceptée
Plus de réponses (1)
David Sanchez
le 21 Juin 2013
Sort your matrix in descending order:
m = rand(5,4); % example matrix
[rows cols] = size(m);
m2 = reshape(m,rows*cols,1);
xx = sort(m2,'descend')
grab the elements you want
my_elements = xx(1:9);
0 commentaires
Voir également
Catégories
En savoir plus sur Polygons dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!