Python List of np arrays to array

前端 未结 3 396
无人及你
无人及你 2020-12-30 19:22

I\'m trying to turn a list of 2d numpy arrays into a 2d numpy array. For example,

dat_list = []
for i in range(10):
    dat_list.append(np.zeros([5, 10]))
         


        
3条回答
提交回复
热议问题