Fixation
From NeuroTychoWiki
- Subjects Monkey Q Monkey B Monkey C
- Data format We prepared 3 kinds of the mat-files for each monkey. A. "ECoG_chXXX.mat" contains ECoG signal recorded from the channel XXX (XXX = 1-128). Loading each mat file, you'll obtain a matrix "XXX". XXX is
B. "info.mat" contains XXX
C. "elInfo.mat" contains the information about the electrodes-positions. You can see the electrode locations on the brain surface with the code like this; load("elInfo.mat"); figure, imagesc(IMG), axis equal, axis off, hold on; plot(elX, elY, 'ko'); for iCh =1:length(elX) text(elX(iCh),elY(iCh),sprintf('%d',iCh)); end