sort the matrix according to order of column

1 visualización (últimos 30 días)
ha ha
ha ha el 21 de Nov. de 2018
Editada: ha ha el 10 de Abr. de 2019
Let's say, I have the matrix:
A=[x,y]=[1.1 2;1.2 4;1 4;1.1 3 ;1.3 2;1.3 4;1 2;1.2 3;1.3 3;1.2 2;1 3;1.1 4];
As you observed that:the value of
1st column vary from 1 to 1.3
2nd colume vary from 2 to 4
How can I sort the matrix A to get the result as:
Result=[1 2
1.1 2
1.2 2
1.3 2
1.1 3
1.2 3
1.3 3
1.1 4
1.2 4
1.3 4]

Respuesta aceptada

Guillaume
Guillaume el 21 de Nov. de 2018
Editada: Guillaume el 21 de Nov. de 2018
Result = sortrows(A, [2 1]) %sort first by 2nd column, then by 1st

Más respuestas (0)

Categorías

Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by