sorting
2 views (last 30 days)
Show older comments
I would like to sort a matrix included of alphabet and values for example a matrix with 10 columns or more the first column is included letter the second is included letter the third is included letter and the rest are values
I would like to know how to sort them based on for example first column then how to sort them based on second column and so on?
4 Comments
Answers (2)
Thomas
on 12 Jun 2012
A =
'abc' 'dmf' 'jkl' [1x3 double] [1x3 double] [1x3 double]
'pqr' 'abc' 'jkl' [1x3 double] [1x3 double] [1x3 double]
If you want to sort based on first column use
sortrows(A,1) % sort the entire row based on column1
sortrows(A,2) % sort the entire row based on column2 and so on..
Michael
on 12 Jun 2012
Check the function called sortrows(matrix, column). It might be helpful for what you want to do.
0 Comments
See Also
Categories
Find more on Shifting and Sorting Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!