Filter löschen
Filter löschen

How do you label the different eeg channels

6 Ansichten (letzte 30 Tage)
Ken
Ken am 1 Nov. 2012
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 ?

Antworten (2)

Wayne King
Wayne King am 1 Nov. 2012
You can create a structure array with the field names corresponding to the electrode site, or whether it is EOG, etc...

Star Strider
Star Strider am 1 Nov. 2012
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'

Kategorien

Mehr zu EEG/MEG/ECoG finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by