Sorting Vector A in Ascending order and apply the same steps to Vector B

4 ビュー (過去 30 日間)
Lachlan Martin
Lachlan Martin 2020 年 10 月 28 日
回答済み: Sudhakar Shinde 2020 年 10 月 28 日
Lets Say I have the vectors
A=[1 3 5 2 4]
B=[5 2 6 7 9]
I want to sort A in ascending order such that
A=[1 2 3 4 5]
But I also it this to happen to B such that the corresponding value is moved as well
B=[5 7 2 9 6]
So before and after sorting
1 still corresponds with 5
2 still corresponds with 7
3 still corresponds with 2
4 still corresponds with 9
5 still corresponds with 6

採用された回答

Stephen23
Stephen23 2020 年 10 月 28 日
[A,X] = sort(A)
B = B(X)

その他の回答 (1 件)

Sudhakar Shinde
Sudhakar Shinde 2020 年 10 月 28 日
[m n]=sort(A);
disp(m); % Sorted A vector in ascending order
B=B(n);
disp(B);% Sorted B according to A.

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by