sorting a matrix based on L2 norm of each row
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
riad didou
el 23 de Abr. de 2020
Comentada: Ameer Hamza
el 24 de Abr. de 2020
Hello all
Please how to code; descendent sorting a matrix C(9000x9000) based on L2 norm of each row then reconstruct a new ranked matrix.
Thanks in advance
0 comentarios
Respuesta aceptada
Ameer Hamza
el 23 de Abr. de 2020
Editada: Ameer Hamza
el 23 de Abr. de 2020
Try this
M = rand(9000); % random matrix for example
[~, idx] = sort(vecnorm(M, 2, 2), 'descend');
M_sorted = M(idx, :);
2 comentarios
Más respuestas (1)
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!