繁体   English   中英

将 3D 数组重塑为二维数组并返回到 3D 数组

[英]Reshape 3D array to 2D array and back to 3D array

我有一个 3D 数组 (n,x,y),我使用以下内容将其转换为二维数组 (x*y,n):

import numpy as np

# Original 3D array (n,x,y)
a = np.arange(24).reshape(3,4,2)
print(a); print(a.shape)enter code here

# Reshape to 2D array (x*y,n)
b = a.reshape(a.shape[0],a.shape[1]*a.shape[2]).T
print(b); print(b.shape)

# Reshape 2D array (x*y,n) to 3D array (n,x,y)
c = "TBA"

我不确定如何从二维数组重建原始 3D 数组?

原来的 3D 数组有这样的结构:

[[[ 0  1]
  [ 2  3]
  [ 4  5]
  [ 6  7]]

 [[ 8  9]
  [10 11]
  [12 13]
  [14 15]]

 [[16 17]
  [18 19]
  [20 21]
  [22 23]]]

定义:

perm = np.array([1, 0])
inv_perm = np.empty_like(perm)
inv_perm[perm] = np.arange(perm.size)

a = np.arange(24).reshape(3, 4, 2)

重塑并执行置换变换。

b = (
    a
    .reshape(a.shape[0], a.shape[1] * a.shape[2])
    .transpose(*perm)
)

执行逆置换变换并重塑回原始形状。

c = (
    b
    .transpose(*inv_perm)
    .reshape(*a.shape)
)

核实:

>>> (a == c).all()
True

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM