The code here uses scipy.io.savemat:
|
savemat(str(fname), eeg_d, appendmat=False) |
This means saving EEGLAB data as MATLAB files up to version 7.2.
Starting with MATLAB file version 7.3, the data are actually encoded in HDF5 format: https://de.mathworks.com/help/matlab/import_export/mat-file-versions.html
This is a great development, as it makes these files more accessible to other readers outside of MATLAB.
could you please implement support for writing EEGLAB data to mat files of version 7.3 and higher?