Sort MATLAB array in descending order

和自甴很熟 提交于 2019-12-18 06:49:47

问题


I am using MATLAB. I have a question about how to sort an matrix in descending order along one column of a matrix and have the rest of the row values follow suit.

For example,

A = [1 30; 2 40; 3 10; 4 50; 5 20]

becomes

B = [4 50; 2 40; 1 30; 5 20; 3 10]

Thanks


回答1:


Use the SORTROWS function, specifying that you want to sort using the second column in descending order...

B = sortrows(A, -2);

Here, the 2 means "sort in column 2," and the negative sign in front of the 2 means "in de-scending order." See the MATLAB documentation for more information.



来源:https://stackoverflow.com/questions/18820130/sort-matlab-array-in-descending-order

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!