Using a matrix as an index of another matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Steven Lord
el 10 de Mzo. de 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))
Ver también
Categorías
Más información sobre Creating and Concatenating 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!