交换包含矩阵的最小和最大元素的行 Python
我需要创建矩阵
matrix = np.random.randint(1, 100, size = (3, 3), dtype='l')
,看起来像是
10 45 74
59 20 15
86 41 76
,我需要交换包含最大和最小数字的行 喜欢
86 41 76
59 20 15
10 45 74
我该怎么做?
I need to create matrix
matrix = np.random.randint(1, 100, size = (3, 3), dtype='l')
and it`s looks likee
10 45 74
59 20 15
86 41 76
and i need to swap rows that contains max and min number
like that
86 41 76
59 20 15
10 45 74
how i can do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一种(无聊的)解决方案:
Here is one (boring) solution:
我认为使用
np.unravel_index
是除了以下高级索引来交换行之外最快的方法之一a>:基准(Colab):
I think using
np.unravel_index
be one of the fastest way besides the following advanced indexing to swap the rows:Benchmarks (Colab):