フィルターのクリア

which columns of the .csv eeg file do I have to use to import it into EEGLAB?

29 ビュー (過去 30 日間)
Faruk Alioglu
Faruk Alioglu 2023 年 11 月 30 日
編集済み: Faruk Alioglu 2023 年 11 月 30 日
Hi everyone, I have saved my EEG data as a .csv file. The structure of the file can be seen in the Image, so I basically have a problem with the information within the columns. Is it correct if I extract the column with the time values and the columns with the data of the EEG channels and leave the column with the epochs? And I had problems with importing the .csv file in EEGLAB, so I saved the .csv file as a .mat file as you can see in the code below. I would really appreciate your help.
EEG = readtable('motor-imagery-1-[2023.11.23-15.14.58].csv');
EEG_nurKanaele = EEG(:,[1, 3:10]); % here the column with the time values and the columns with the EEG channels are extracted
EEG_matrix = table2array(EEG_nurKanaele); % Convert the table into a matrix
save('EEGDaten.mat', 'EEG_matrix'); % Save the matrix as a .mat file
  1 件のコメント
Taylor
Taylor 2023 年 11 月 30 日
This question is probably better suited to the EEGLAB forum since it deals with specific usage of that tool, not just MATLAB in general.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeEEG/MEG/ECoG についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by