Sorting two simple matrices

1 回表示 (過去 30 日間)
Jonathan Moorman
Jonathan Moorman 2021 年 2 月 23 日
コメント済み: Jonathan Moorman 2021 年 2 月 23 日
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]

採用された回答

James Tursa
James Tursa 2021 年 2 月 23 日
編集済み: James Tursa 2021 年 2 月 23 日
Use the 2nd output argument of the sort( ) function, which has the indexing. E.g.,
[Asorted,ix] = sort(A);
Bsorted = B(ix);
  1 件のコメント
Jonathan Moorman
Jonathan Moorman 2021 年 2 月 23 日
Works great. Thanks!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeShifting and Sorting Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by