Skip to content

2. Importing your Muse data

Cedric Cannard edited this page Jun 8, 2021 · 3 revisions

Select your file to import:

GUI:

Command line:

EEG = import_muse;

EEG = import_muse(file_path);

Select importing options (EEG only):

GUI:

Command line:

EEG = import_muse(file_path, 1);

Import all data:

Muse Monitor:

EEG = import_muse(file_path, 1, 1, 1, 0, 1, 1); %Import everything and export with EEG (Muse Monitor)

[EEG, ACC, GYR, PPG, AUX] = import_muse(file_path, 1, 1, 1, 0, 1, 2); %Import everything as separate outputs (Muse Monitor)

Muse Direct:

EEG = import_muse(file_path, 1, 1, 1, 1, 0, 1); %Import everything and export with EEG (Muse Direct)

[EEG, ACC, GYR, PPG, AUX] = import_muse(file_path, 1, 1, 1, 1, 0, 2); %Import everything as separate outputs (Muse Direct)