Effacer les filtres
Effacer les filtres

How do you label the different eeg channels

6 vues (au cours des 30 derniers jours)
Ken
Ken le 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 ?

Réponses (2)

Wayne King
Wayne King le 1 Nov 2012
You can create a structure array with the field names corresponding to the electrode site, or whether it is EOG, etc...
  1 commentaire
Ken
Ken le 1 Nov 2012
Is there a sample that i can follow?

Connectez-vous pour commenter.


Star Strider
Star Strider le 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'

Catégories

En savoir plus sur EEG/MEG/ECoG dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by