Matlab reading .fif event missing

If you have a question or issue with MNE-Python, please include the following info:

  • MNE-Python version: 0.22.0
  • operating system: windows

Please also provide relevant code snippets – ideally a minimal working example (MWE). To get the correct formatting, paste your Python code, then select it, and click on the Preformatted text toolbar button.

:point_right: :point_right: :point_right: Please edit or remove the above text before submitting your posting. :point_left: :point_left: :point_left:

When I import the .fif files in Matlab, the event info is missing. The .fif files are generated using MNE package. But when I read the .fif files using MNE, the files do contain the event info. I wonder if I could read the event info using MATLAB. (lol)

mne only stores keys from info that are part of the FIF standard

if you want to save events array use scipy.io.savemat or np.savetxt

Alex