How to sort a structure array based on a specific field
古いコメントを表示
How do we sort a structure array based on a specific field?
採用された回答
その他の回答 (1 件)
Norbert Nitzsche
2019 年 7 月 25 日
編集済み: Norbert Nitzsche
2019 年 7 月 25 日
8 投票
% suppose 's' is the struct array and you want to sort it by the values in field 'f_sortby'
[x,idx]=sort([s.f_sortby]);
s=s(idx);
1 件のコメント
Bruno Luong
2020 年 8 月 3 日
編集済み: Bruno Luong
2020 年 8 月 3 日
"Using curly braces should work for both numerical and text values"
Not for me
>> s=struct('num', {1 2 3})
s =
1×3 struct array with fields:
num
>> s(1)
ans =
struct with fields:
num: 1
>> s(3)
ans =
struct with fields:
num: 3
>> [x,idx]=sort({s.num})
Error using sort
Input argument must be a cell array of character vectors.
カテゴリ
ヘルプ センター および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!