how can I import an array to python (numpy) from a file and that way the file must be written. For example, a matrix
to and from that file type (extention).
thanks for any response
|
|
|
Checkout the entry on the numpy example list. Here is the entry on .loadtxt()
|
|||
|
|
Have a look at SciPy cookbook. It should give you an idea of some basic methods to import /export data. If you save/load the files from your own Python programs, you may also want to consider the Pickle module, or cPickle. |
|||||
|
|
(I know the question is old, but I think this might be good as a reference for people with similar questions) If you want to load data from an ASCII/text file (which has the benefit or being more or less human-readable and easy to parse in other software), numpy.loadtxt is probably what you want: If you just want to quickly save and load numpy arrays/matrices to and from a file, take a look at numpy.save and numpy.load: |
|||
|
|
|
Another option is
This will make |
|||
|
|