tags:

views:

1127

answers:

1

Does anyone have successful experience reading binary Matlab .mat files in Python?

(I've seen that scipy has alleged support for reading .mat files, but I'm unsuccessful with it. I installed scipy version 0.7.0, and I can't find the loadmat() method)

+2  A: 

Silly me. Forgot to import io...

import scipy.io
mat = scipy.io.loadmat('file.mat')
Gilad Naor
please "accept" your answer so the question is getting marked as "answered"
bgbg