How to sort the output of variables of cell array ?

조회 수: 1 (최근 30일)
Ole
Ole 2017년 8월 8일
편집: Stephen23 2017년 8월 8일
I would like to sort the output of variables fx1 with the first digit and preserve the rows.
sortrows(data,1) does not work with cells
>> fx1{1}
ans =
5->2
fx1 =
'5->2'
'2->1'
'1->3'
'3->9'
'9->5'
'5->2'
'2->1'
Sorted to
'1->3'
'2->1'
'2->1'
'3->9'
'5->2'
'5->2'
'9->5'
sortrows(data,1) does not work with cells

채택된 답변

Stephen23
Stephen23 2017년 8월 8일
편집: Stephen23 2017년 8월 8일
If it is a vector, why not simply use sort?:
>> sort(fx1)
ans =
'1->3'
'2->1'
'2->1'
'3->9'
'5->2'
'5->2'
'9->5'
If you want to sort by numeric value rather than character code then download my FEX submission natsortrows, which also includes natsort: one of these might do what you want.
  댓글 수: 1
Ole
Ole 2017년 8월 8일
Thanks I had an empty cell at the end and was giving error. Works fine with sort.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by