필터 지우기
필터 지우기

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 CenterFile Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by