Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (47.6k points)

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)

1 Answer

0 votes
by (106k points)

You can read binary Matlab .mat files in PythonSilly by importing io below is the code for reading the .mat file.

import scipy.io

mat = scipy.io.loadmat('file.mat')

Related questions

0 votes
1 answer
+2 votes
2 answers
+2 votes
3 answers

Browse Categories

...