Save an array to file.
Parameters: | fname : filename or a file handle
X : array_like
fmt : string or sequence of strings
delimiter : str
|
---|
Notes
Further explanation of the fmt parameter (%[flag]width[.precision]specifier):
- : left justify
+ : Forces to preceed result with + or -.
0 : Left pad the number with zeros instead of space (see width).
c : character
d or i : signed decimal integer
e or E : scientific notation with e or E.
f : decimal floating point
g,G : use the shorter of e,E or f
o : signed octal
s : string of characters
u : unsigned decimal integer
x,X : unsigned hexadecimal integer
This is not an exhaustive specification.
Examples
>>> savetxt('test.out', x, delimiter=',') # X is an array
>>> savetxt('test.out', (x,y,z)) # x,y,z equal sized 1D arrays
>>> savetxt('test.out', x, fmt='%1.4e') # use exponential notation