Azzera filtri
Azzera filtri

Sort a Matrix based on a column

2 visualizzazioni (ultimi 30 giorni)
Kris zenitis
Kris zenitis il 9 Dic 2011
Commentato: Azzi Abdelmalek il 19 Feb 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???

Risposta accettata

Walter Roberson
Walter Roberson il 9 Dic 2011
[lastvals, idx] = sort(A(:,end));
sortedA = A(idx,:);
  2 Commenti
Walter Roberson
Walter Roberson il 9 Dic 2011
Sorry I had the index order reversed. It is fixed in my Answer now.
Azzi Abdelmalek
Azzi Abdelmalek il 19 Feb 2014
[Kris zenitis commented]
I ve got a matrix 4000x9. When i tried your solution i got Index exceeds matrix dimensions.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by