http://docs.scipy.org/doc/scipy/reference/tutorial/io.html
如果更喜欢用python或Octave/Matlab,但又想兼而有之, 可以考虑
File IO (scipy.io)
See also
numpy-reference.routines.io (in numpy)
MATLAB files
loadmat(file_name[, mdict, appendmat]) | Load MATLAB file |
savemat(file_name, mdict[, appendmat, ...]) | Save a dictionary of names and arrays into a MATLAB-style .mat file. |
whosmat(file_name[, appendmat]) | List variables inside a MATLAB file |
The basic functions
We’ll start by importing scipy.io and calling it sio for convenience:
If you are using IPython, try tab completing on sio. Among the many options, you will find:
These are the high-level functions you will most likely use when working with MATLAB files. You’ll also find:
This is the package from which loadmat, savemat and whosmat are imported. Within sio.matlab, you will find the mio module This module contains the machinery that loadmat and savemat use. From time to time you may find yourself re-using this machinery.
How do I start?
You may have a .mat file that you want to read into Scipy. Or, you want to pass some variables from Scipy / Numpy into MATLAB.
To save us using a MATLAB license, let’s start in Octave. Octave has MATLAB-compatible save and load functions. Start Octave (octave at the command line for me):
Now, to Python:
Now let’s try the other way round:
Then back to Octave:
If you want to inspect the contents of a MATLAB file without reading the data into memory, use the whosmat command:
whosmat returns a list of tuples, one for each array (or other object) in the file. Each tuple contains the name, shape and data type of the array.
MATLAB structs
MATLAB structs are a little bit like Python dicts, except the field names must be strings. Any MATLAB object can be a value of a field. As for all objects in MATLAB, structs are in fact arrays of structs, where a single struct is an array of shape (1, 1).
We can load this in Python:
In versions of Scipy from 0.12.0, MATLAB structs come back as numpy structured arrays, with fields named for the struct fields. You can see the field names in the dtype output above. Note also:
and:
So, in MATLAB, the struct array must be at least 2D, and we replicate that when we read into Scipy. If you want all length 1 dimensions squeezed out, try this:
Sometimes, it’s more convenient to load the MATLAB structs as python objects rather than numpy structured arrays - it can make the access syntax in python a bit more similar to that in MATLAB. In order to do this, use the struct_as_record=False parameter setting to loadmat.
struct_as_record=False works nicely with squeeze_me:
Saving struct arrays can be done in various ways. One simple method is to use dicts:
loaded as:
You can also save structs back again to MATLAB (or Octave in our case) like this:
MATLAB cell arrays
Cell arrays in MATLAB are rather like python lists, in the sense that the elements in the arrays can contain any type of MATLAB object. In fact they are most similar to numpy object arrays, and that is how we load them into numpy.
Back to Python:
Saving to a MATLAB cell array just involves making a numpy object array:
IDL files
readsav(file_name[, idict, python_dict, ...]) | Read an IDL .sav file |
Matrix Market files
mminfo(source) | Queries the contents of the Matrix Market file ‘filename’ to extract size and storage information. |
mmread(source) | Reads the contents of a Matrix Market file ‘filename’ into a matrix. |
mmwrite(target, a[, comment, field, precision]) | Writes the sparse or dense array a to a Matrix Market formatted file. |
Wav sound files (scipy.io.wavfile)
read(filename[, mmap]) | Return the sample rate (in samples/sec) and data from a WAV file |
write(filename, rate, data) | Write a numpy array as a WAV file |
Arff files (scipy.io.arff)
Module to read ARFF files, which are the standard data format for WEKA.
ARFF is a text file format which support numerical, string and data values. The format can also represent missing data and sparse data.
See the WEKA website for more details about arff format and available datasets.
Examples
loadarff(f) | Read an arff file. |
Netcdf (scipy.io.netcdf)
netcdf_file(filename[, mode, mmap, version]) | A file object for NetCDF data. |
Allows reading of NetCDF files (version of pupynere package)