Read .mat Files in Python

2017-03-30 Beijing

Some of the open datasets come with matlab format, we can load the matlab format files with python with the following codes :

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

Enjoy^_^