MATLAB: How to convert .edf to .set in MATLAB

eegsignal processing

I want to work with a algorithm named "BLINKER". For that I need to import the EEG data in .set format but the data I am using is in .edf format.

Best Answer

You can try this way to convert .edf format to .set format
  • You may use edfread to get the data into MATLAB
  • In order to convert data in MATLAB to .set format you may refer this question
Related Question