I have an numpy array of form
a = [1,2,3]
which I want to save to a .txt file such that the file looks like:
1 2 3
If I use numpy.savetxt then I get a file like:
1
2
3
There should be a easy solution to this I suppose, any suggestions?
|
|
If
Edit several 1D arrays with same length
several 1D arrays with variable length
|
|||||||||||
|
|
|||
|
|
|
An alternative answer is to reshape the array so that it has dimensions
|
|||
|
|
|
just
and write this output to a file. |
|||
|