I have a Matlab .mat
file for table of contents and I want to extract it using Python.
I am using scipy.io.loadmat
but the data is not being extracted. It shows None
and matlabopaqe,mcos
.
I have uploaded the .mat
file here.
import scipy.io
from scipy.io import loadmat
import numpy
matdata = scipy.io.loadmat('matfile.mat')
print(matdata.keys())
print(matdata.items())