1
我想要一個陣列的形狀爲(N,)
和dtype=object
,所有陣列的形狀相同,shape
,並創建一個數組與shape == (N,) + shape
。我想知道是否有人知道這樣做的最佳方法。這是一個例子。摺疊陣列的嵌套陣列
import numpy as np
array = np.empty(4, dtype=object)
array[:] = [np.ones([3, 2])]
array = np.array(array.tolist())
print array.dtype
# float64
print array.shape
# (4, 3, 2)
會提示'concatenate',但實際上你的解決方案似乎已經對我最好了。如果你知道dtype,你可以給它,而不是使用'.tolist()'。 – seberg