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]))
See https://docs.scipy.org/doc/numpy/reference/generated/numpy.append.html for details. You can use append, but will want to specify the axis on which to append.
dat_list.append(np.zeros([5, 10]),axis=0)