0
在這裏,我需要得到一個二維數組如何連接的陣列的兩個部分,使一個新的陣列
x = np.zeros((10, 4))
y = np.ones((10, 4))
c = np.array([x[0:3, :], y[0:3, :]])
print c.shape # I get (2, 3, 4)
np.reshape(c, (6, 4))
print c.shape # I get (2, 3, 4)
我需要4列得到的6行的二維數組。
有沒有嘗試過任何各種[陣列組合方法](https://docs.scipy.org/doc/numpy/reference/routines.array-manipulation.html#joining-arrays)? – wflynny
'np.reshape()'不會改變對象的位置。它返回數組的新視圖,但是你的代碼只是忽略了返回值。 –