标签: python numpy-ndarray
我有一个形状为(800,)的np数组,并且该数组中的每个元素的形状都是(240,),如何将该数组重整为(800,240)尺寸?
答案 0 :(得分:0)
尝试使用np.stack:
np.stack(a)