How to sort the output of variables of cell array ?

1 vue (au cours des 30 derniers jours)
Ole
Ole le 8 Août 2017
Modifié(e) : Stephen23 le 8 Août 2017
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

Réponse acceptée

Stephen23
Stephen23 le 8 Août 2017
Modifié(e) : Stephen23 le 8 Août 2017
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 commentaire
Ole
Ole le 8 Août 2017
Thanks I had an empty cell at the end and was giving error. Works fine with sort.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by