a = np.arange(6).reshape(2,3)
b = np.arange(7,13).reshape(2,3)
np.concatenate(a,b)
解决,help(concatenate)
concatenate((array),axis,out)
修改
a = np.arange(6).reshape(2,3)
b = np.arange(7,13).reshape(2,3)
np.concatenate((a,b))
TypeError: only integer scalar arrays can be converted to a scalar index
最新推荐文章于 2023-08-04 09:31:01 发布
5087

被折叠的 条评论
为什么被折叠?



