gpt4 book ai didi

python - 在数组中转置数组

转载 作者:太空狗 更新时间:2023-10-30 00:36:06 27 4
gpt4 key购买 nike

我有一个形状为 (M*N,N) 的二维数组,它实际上由 MN*N 数组组成。我想以矢量化方式转置所有这些元素(N*N 矩阵)。例如,

import numpy as np
A=np.arange(1,28).reshape((9,3))
print "A before transposing:\n", A
for i in range(3):
A[i*3:(i+1)*3,:]=A[i*3:(i+1)*3,:].T
print "A after transposing:\n", A

此代码生成以下输出:

A before transposing: 
[[ 1 2 3]
[ 4 5 6]
[ 7 8 9]
[10 11 12]
[13 14 15]
[16 17 18]
[19 20 21]
[22 23 24]
[25 26 27]]
A after transposing:
[[ 1 4 7]
[ 2 5 8]
[ 3 6 9]
[10 13 16]
[11 14 17]
[12 15 18]
[19 22 25]
[20 23 26]
[21 24 27]]

如我所料。但我想要矢量化版本。

最佳答案

这是一种在一行中完成的令人讨厌的方法!

A.reshape((-1, 3, 3)).swapaxes(-1, 1).reshape(A.shape)

循序渐进。 reshape 为 (3, 3, 3)

>>> A.reshape((-1, 3, 3))
array([[[ 1, 2, 3],
[ 4, 5, 6],
[ 7, 8, 9]],

[[10, 11, 12],
[13, 14, 15],
[16, 17, 18]],

[[19, 20, 21],
[22, 23, 24],
[25, 26, 27]]])

然后执行类似转置的操作swapaxes在每个子数组上

>>> A.reshape((-1, 3, 3)).swapaxes(-1, 1)
array([[[ 1, 4, 7],
[ 2, 5, 8],
[ 3, 6, 9]],

[[10, 13, 16],
[11, 14, 17],
[12, 15, 18]],

[[19, 22, 25],
[20, 23, 26],
[21, 24, 27]]])

最后 reshape 为(9, 3)

>>> A.reshape((-1, 3, 3)).swapaxes(-1, 1).reshape(A.shape)
array([[ 1, 4, 7],
[ 2, 5, 8],
[ 3, 6, 9],
[10, 13, 16],
[11, 14, 17],
[12, 15, 18],
[19, 22, 25],
[20, 23, 26],
[21, 24, 27]])
>>>

我认为使用任何方法都必须复制数据,因为没有可以从以下位置生成结果的二维步幅/形状:

array([ 1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27])

(有吗?)在我的版本中,我认为数据是在最后的 reshape 步骤中复制的

关于python - 在数组中转置数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23292940/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com