对mathematica中其他部分的更改进行排序
我只是想知道:
给定一个列表 {{{3,1,2},{4,2,5}},{{7,1},{2,4}}}
,我想要对第一个组件进行排序,然后让第二个组件像第一个组件一样进行更改。所需结果为 {{{1,2,3},{2,5,4}},{{1,7},{4,2}}}
。
我该怎么做?非常感谢您的帮助。
I am just wondering:
given a list {{{3,1,2},{4,2,5}},{{7,1},{2,4}}}
, I want to sort the first component, then have the second component change as the first one does. The desired result is {{{1,2,3},{2,5,4}},{{1,7},{4,2}}}
.
How can I do this? Many thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是确保工作安全的一句话 =)
这可能更清楚地说明正在发生的事情:
Here's the job-security-ensuring one-liner =)
This might be a little more clear as to what's happening:
我建议:
这比迈克尔的要短,而且效率几乎是迈克尔的两倍。
I suggest:
This is shorter than Michael's, and nearly twice as efficient.