I am trying to do something that is probable very simple. I would like to save three arrays to a file as columns using \'np.savetxt\' When I try this
x = [1,2,3
I find numpy.column_stack() most intuitive:
numpy.column_stack()
np.savetxt('myfile.txt', np.column_stack([x,y,z]))