sorted two different arrays

7 ビュー (過去 30 日間)
Cem SARIKAYA
Cem SARIKAYA 2019 年 5 月 19 日
コメント済み: Cem SARIKAYA 2019 年 5 月 19 日
hello, I have two different variables one of them is table, one of them is cell with the same number of rows. I need to sort both of them with table 1st column how can ı do that?

採用された回答

madhan ravi
madhan ravi 2019 年 5 月 19 日
編集済み: madhan ravi 2019 年 5 月 19 日
[~,idx]=sort(T{:,1}); % T your table
C(idx,:) % C your cell become sorted according to first column of table
T(idx,:) % T becomes sorted according to first column of its own
  1 件のコメント
Cem SARIKAYA
Cem SARIKAYA 2019 年 5 月 19 日
Thank you very much

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

その他の回答 (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