Using a matrix as an index of another matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hello everybody, I need some help please!
I am trying to sort a matrix (x) and go back to the original order based on the index matrix (idx2).
a = 30.0;
b = 100.0;
for i=1:5
x = (b-a).*rand(5,5) + a;
x = round(x,1);
end
[y, idx2] = sort(x, 2);
Thank you in advance
0 Commenti
Risposte (1)
Steven Lord
il 10 Mar 2023
Take some shuffled data.
r = randperm(10)
Now sort it.
[sortedData, indices] = sort(r)
We can get back to r from sortedData using the indices.
recreatedR(indices) = sortedData
Let's check.
isequal(r, recreatedR)
We could also recreate sortedData from r using indices.
isequal(sortedData, r(indices))
Vedere anche
Categorie
Scopri di più su Creating and Concatenating 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!