How to sort a struct
조회 수: 136 (최근 30일)
이전 댓글 표시
Is it possible to sort a struct? I want to sort the third column.
0 should be in the first row and the highest value at the end (last row). The other values are not important and should be the same ranking.
Thank you.
댓글 수: 2
채택된 답변
Mohammad Sami
2020년 7월 23일
편집: Mohammad Sami
2020년 7월 23일
You can try like this.
% a = somestruct;
[~,index] = sortrows([a.Var3].');
a = a(index);
댓글 수: 2
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!