I have a list from appending 2 numpy array.
mylist=
[array([[5.45, 2.97, 6.25],
[7.27, 5.28, 4.18]]),
array([[4.54, 2.06, 2.53],
[7.2, 5.28, 1.29]])]
I would like to re-create numpy array from this list as follow:
array([[5.45, 2.97, 6.25,4.54, 2.06, 2.53]],
[7.27, 5.28, 4.18,7.2, 5.28, 1.29]])
I tried np.array(mylist).reshape(2,6), but the result is not as my aim.
np.column_stack(mylist)np.hstack(ornp.concatenate(mylist, axis=1))