How can I sort a matrix elementwise ?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Gayan Lankeshwara
il 21 Ott 2019
Commentato: Gayan Lankeshwara
il 21 Ott 2019
Hi, I need to sort a matrix elementwise and get the results to a single vector without losing the index of each element.
For example,
A = [3, 4 ; 6, 2]
The sorted vector should be ,
B = [2;3;4;6]
without losing the information of each and every element in the original matrix.
Thank you.
0 Commenti
Risposta accettata
Andrei Bobrov
il 21 Ott 2019
A = [3, 4 ; 6, 2];
[m,~] = size(A);
[B,i] = sort(A(:));
index = [mod(i-1,m) + 1, ceil(i/m)];
Vedere anche
Categorie
Scopri di più su Shifting and Sorting Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!