フィルターのクリア

sort cell array in a struct

1 回表示 (過去 30 日間)
Chiara Scarpellini
Chiara Scarpellini 2021 年 8 月 7 日
回答済み: Walter Roberson 2021 年 8 月 8 日
I need to sort the vector Codes and I need the values of vector Discharge to be ordinated according to it. I tried the function sortrows but in this case it doesn't work since in soe cases I'm not working with scalars.
  6 件のコメント
Walter Roberson
Walter Roberson 2021 年 8 月 7 日
編集済み: Walter Roberson 2021 年 8 月 8 日
[Name_Code.Codes, Cidx] = cellfun(@sort,Name_Code.Codes,"UniformOutput",false);
Name_Code.Discharge = cellfun(@(d,idx)d(idx), Name_Code.Discharge, Cidx);
Chiara Scarpellini
Chiara Scarpellini 2021 年 8 月 7 日
it works! huge thank you!

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

採用された回答

Walter Roberson
Walter Roberson 2021 年 8 月 8 日
(Moving down from comment)
[Name_Code.Codes, Cidx] = cellfun(@sort,Name_Code.Codes,"UniformOutput",false);
Name_Code.Discharge = cellfun(@(d,idx)d(idx), Name_Code.Discharge, Cidx);

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