2010-02-11

Matlab and Python

How to read Matlab files with Python and SciPy can be read here. Short:

import scipy.io

data = scipy.io.loadmat('test.mat')

This will create a dictionary called data containing all the variables of the Matlab file.

2 comments: