I have created following .mat file in MATLAB with '-v7.3' flag. I need this flag due to huge data-size. I used following command in MATLAB to save this file.
save('sample10_properties.mat', 'stats','-v7.3')
Here is the link of the data
https://drive.google.com/file/d/195fj6Tl1n_drS8R_A6bdbOEc3rGkiMqS/view?usp=sharing
I can see stats variable in python but I don't know how to access. Any help will be appreciated.
import numpy as np
import h5py
f = h5py.File('sample10_properties.mat')
f.keys() [u'#refs#', u'#subsystem#', u'stats']
f.values() [<HDF5 group "/#refs#" (13951 members)>, <HDF5 group "/#subsystem#" (1 members)>, <HDF5 dataset "stats": shape (1, 6), type "<u4">]
The size of stats variable is (1390, 18). Thanks