我如何在MATLAB中进行嵌套排序?

时间:2009-08-11 20:44:52

标签: matlab sorting matrix nested

我希望在MATLAB中使用矩阵进行嵌套排序。说我的矩阵看起来像这样:

[b a; 
 b c;
 a c;
 a a]

我想首先按第一列排序并保持该排序,然后按第二列排序。结果将是:

[a a;
 a c;
 b a;
 b c]

怎么做?

1 个答案:

答案 0 :(得分:13)

sortrows可以解决问题。

更详细一点,排序(A,[1 2]),其中A是你的矩阵。