📜  使用 NP.VSTACK 组合两个二维 NUMPY 数组 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:34.360000             🧑  作者: Mango

代码示例1
np_array_zeros_2d = np.zeros(shape = (2,2), dtype = 'int')
np_array_ones_2d = np.ones(shape = (3,2), dtype = 'int')