Sorting two simple matrices
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Jonathan Moorman
am 23 Feb. 2021
Kommentiert: Jonathan Moorman
am 23 Feb. 2021
Hi! I need to sort matrix A from least to greatest; however, the values are tied to matrix B. How can I can make B adjust with a matrix A sort.
Matrix A and B are the starting values, and A' and B' are the desired answer.
A = [ 2, 3, 1, 4]
B = [ 6, 5, 1, 10]
A' = [ 1, 2 , 3, 4]
B' = [ 1, 6, 5, 10]
0 Kommentare
Akzeptierte Antwort
James Tursa
am 23 Feb. 2021
Bearbeitet: James Tursa
am 23 Feb. 2021
Use the 2nd output argument of the sort( ) function, which has the indexing. E.g.,
[Asorted,ix] = sort(A);
Bsorted = B(ix);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!