numpy数组的形状不完整

时间:2017-12-01 16:52:17

标签: python arrays numpy

我有一些numpy数组s。我以某种程序化的方式得到它(并不是真的如何):

s.shape
> (20, )

但是,它实际上由20个嵌套数组组成:

s[0].shape
> (100, 100, 100)

当我尝试:

s.reshape((20, 100, 100, 100))

我得到cannot reshape array of size 20 into shape (20, 100, 100, 100)。如何修复它并获得形状(20, 100, 100, 100)的数组?

0 个答案:

没有答案