In my pipeline I first suppress the TMS-evoked macular artifact with SSP-SIR and then refine the artifact rejection with fastICA.
I use SSP-SIR like this
EEG = pop_tesa_sspsir(EEG, 'leadfieldIn', [],...
'leadfieldChansFile', [],...
'artScale', 'automatic',...
'timeRange', [])
EEG = pop_tesa_compselect( EEG, ...
'compCheck','on', ...
'remove','on', ...
'saveWeights','on', ...
'figSize','large', ...
'plotTimeX',[-50 100], ...
'plotFreqX',[1 200], ...
'freqScale','log', ...
'tmsMuscle','on', ...
'tmsMuscleThresh',8, ...
'tmsMuscleWin',[8 50], ...
'tmsMuscleFeedback','off', ...
'blink','off', ...
'blinkThresh',2.5, ...
'blinkElecs',{'Fp1','Fp2'}, ...
'blinkFeedback','off', ...
'move','off', ...
'moveThresh',2, ...
'moveElecs',{'F7','F8'}, ...
'moveFeedback','off', ...
'muscle','off', ...
'muscleThresh',-0.31, ...
'muscleFreqIn',[7 70], ...
'muscleFreqEx',[58 62], ...
'muscleFeedback','off', ...
'elecNoise','off', ...
'elecNoiseThresh',4 ...
,'elecNoiseFeedback','off' );
I get this weird artifact component (I am uploading some examples). It seems to have always the same latency ~ -15 to 35 ms .
In my pipeline I first suppress the TMS-evoked macular artifact with SSP-SIR and then refine the artifact rejection with fastICA.
I use SSP-SIR like this
when running fastICA with
EEG = pop_tesa_fastica( EEG, 'g','gauss','stabilization','on' )and visualizing the components with
I get this weird artifact component (I am uploading some examples). It seems to have always the same latency ~ -15 to 35 ms .
Is anyone else seeing this with their data?