フィルターのクリア

How do you label the different eeg channels

6 ビュー (過去 30 日間)
Ken
Ken 2012 年 11 月 1 日
I have a EEG data with 16 channels currently the are named as data 1 to data 16 how do I let MatLab know that they are named C5, Fc3, C3, Cp3, C1, Fcz, Cz, Cpz, C2, Fc4, C4, Cp4, C6, EOG, NOISE, NOISE ?

回答 (2 件)

Wayne King
Wayne King 2012 年 11 月 1 日
You can create a structure array with the field names corresponding to the electrode site, or whether it is EOG, etc...
  1 件のコメント
Ken
Ken 2012 年 11 月 1 日
Is there a sample that i can follow?

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


Star Strider
Star Strider 2012 年 11 月 1 日
I suggest a cell array:
ChEEG = {'C5', 'Fc3', 'C3', 'Cp3', 'C1', 'Fcz', 'Cz', 'Cpz', 'C2', 'Fc4', 'C4', 'Cp4', 'C6', 'EOG', 'NOISE', 'NOISE'};
then:
Ch5 = ChEEG(5)
produces:
Ch5 =
'C1'

カテゴリ

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