Clear Filters
Clear Filters

How do you label the different eeg channels

6 views (last 30 days)
Ken
Ken on 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 ?

Answers (2)

Wayne King
Wayne King on 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 on 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'

Categories

Find more on EEG/MEG/ECoG in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!