This seems like a simple enough task, but I haven\'t found how to do it using numpy. Consider the example array:
numpy
import numpy as np aa = np.arra
You can use numpy.hstack
>>> np.hstack(aa) array([13.16, 1.58, 1.2 , 13.1 , 1. , 2.6 ])