Sort a Matrix based on a column
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Kris zenitis
le 9 Déc 2011
Commenté : Azzi Abdelmalek
le 19 Fév 2014
I want to sort a matrix. Actually I want to sort the last column and all the rest columns based on the last. Has anyone idea about this???
0 commentaires
Réponse acceptée
Walter Roberson
le 9 Déc 2011
[lastvals, idx] = sort(A(:,end));
sortedA = A(idx,:);
2 commentaires
Azzi Abdelmalek
le 19 Fév 2014
[Kris zenitis commented]
I ve got a matrix 4000x9. When i tried your solution i got Index exceeds matrix dimensions.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Shifting and Sorting Matrices 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!