How to sort a struct
182 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Peter Meier
el 23 de Jul. de 2020
Comentada: Stephen23
el 23 de Jul. de 2020
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 comentarios
Respuesta aceptada
Mohammad Sami
el 23 de Jul. de 2020
Editada: Mohammad Sami
el 23 de Jul. de 2020
You can try like this.
% a = somestruct;
[~,index] = sortrows([a.Var3].');
a = a(index);
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!