sort rows of a matrix based on their maximum value
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
Consider a 100x10 matrix.
Each 1x10 row has a maximum value.
How can I sort the rows of the matrix in ascending order based only on their maximum value?
Thank you very much.
Best,
Pavlos
0 comentarios
Respuesta aceptada
Más respuestas (2)
Azzi Abdelmalek
el 11 de Sept. de 2013
Editada: Azzi Abdelmalek
el 11 de Sept. de 2013
Edit2
[ii,ii]=sort(max(A'))
BB=A(ii,:)
1 comentario
Azzi Abdelmalek
el 11 de Sept. de 2013
Editada: Azzi Abdelmalek
el 11 de Sept. de 2013
Look at Edit2
Simon
el 11 de Sept. de 2013
A=randi(100,10,5);
for n = 1:size(A, 1)
B(n,:) = sort(A(n,:));
end
0 comentarios
Ver también
Categorías
Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!