How to sort a table by one column
224 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sebastian Engelsgaard
le 28 Jan 2021
Commenté : David Ebert
le 3 Oct 2022
Hi,
I have a 3x2 table defined as:
Var1 Var2
__________________________ ______
{'data1'} 23.28
{'data2'} 2.56
{'data3'} 110.69
and I have tried to sort the rows by using:
sortedtable = sort(table.Var2,'descend')
However, it only returns the variable 'sortedtable' as:
Var2
______
110.69
23.28
2.56
and I would like to have the format as shown below in a UITable:
Var1 Var2
__________________________ ______
{'data3'} 110.69
{'data1'} 23.28
{'data2'} 2.56
app.UITable.Data= sortedtable
Can anyone help?
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
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!