sorting a matrix based on L2 norm of each row
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Ameer Hamza
le 23 Avr 2020
Modifié(e) : Ameer Hamza
le 23 Avr 2020
Try this
M = rand(9000); % random matrix for example
[~, idx] = sort(vecnorm(M, 2, 2), 'descend');
M_sorted = M(idx, :);
2 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!