I have a large matfile MEG data set (more than 2 GB) and I want to open that to figure out what is in it.
I have tried this
import h5py
with h5py.File('subject_1.mat', 'r') as file:
print(list(file.keys()))
which gives
['#refs#', 'Data']
so I try
myvar = f['Data'].value
but then my kernel will shut down and crash.
I expect to see a time series but it is possibly too large for my computer. Please note that my RAM is 16 GB.