HOW CAN I SORTED MY MATRIX DESCEND

I HAVE A MATRIX M=[ 1 2 3 4 5 ;1 20 54 6 40] I WANT TO SORT MY MATRIX WITHIN THE SECOND COLON WITH ASCENDING WAY TO OBTEIND THIS RESULT :
M=[3 5 2 4 1;54 40 20 6 1]
HOW CAN I DO

 Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 22 de Nov. de 2015
Editada: Andrei Bobrov el 22 de Nov. de 2015
M=[ 1 2 3 4 5 ;1 20 54 6 40];
[~,ii] = sort(M(2,:),'descend');
out = M(:,ii);
or
out = sortrows(M',-2)';

1 comentario

ali hadjer
ali hadjer el 22 de Nov. de 2015
thank you i use out = sortrows(M',-2)'; its good :)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 22 de Nov. de 2015

Comentada:

el 22 de Nov. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by