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

发布于 2024-08-01 18:22:34 字数 205 浏览 2 评论 0原文

我希望在 MATLAB 中使用矩阵进行嵌套排序。 假设我的矩阵如下所示:

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

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

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

这将如何完成?

I am looking to do a nested sort with a matrix in MATLAB. Say my matrix looks like this:

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

I would like to first sort by the first column and maintain that sort, then sort by the second column. The result would be:

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

How would it be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤舞 2024-08-08 18:22:34

排序行< /a> 就可以了。

更详细地说,sortrows(A,[1 2]),其中 A 是你的矩阵。

sortrows would do the trick.

To be more detailed, sortrows(A,[1 2]), where A is your matrix.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文