Sort a Matrix based on a column
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Kris zenitis
el 9 de Dic. de 2011
Comentada: Azzi Abdelmalek
el 19 de Feb. de 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 comentarios
Respuesta aceptada
Walter Roberson
el 9 de Dic. de 2011
[lastvals, idx] = sort(A(:,end));
sortedA = A(idx,:);
2 comentarios
Walter Roberson
el 9 de Dic. de 2011
Sorry I had the index order reversed. It is fixed in my Answer now.
Azzi Abdelmalek
el 19 de Feb. de 2014
[Kris zenitis commented]
I ve got a matrix 4000x9. When i tried your solution i got Index exceeds matrix dimensions.
Más respuestas (0)
Ver también
Categorías
Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!