我有一些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)
的数组?