I am trying to read a matlab file with the following code
import scipy.io mat = scipy.io.loadmat(\'test.mat\')
and it gives me the followin
I've created a small library to load MATLAB 7.3 files:
pip install mat73
To load a .mat 7.3 into Python as a dictionary:
.mat
import mat73 data_dict = mat73.loadmat('data.mat')
simple as that!