nirs.modules.KeepStims

See also nirs.modules.DiscardStims

Untitled

nirs.modules.KeepStims

This module can keep the specific stims.
Example Usage:
raw = nirs.testing.simData([], @(t)nirs.testing.blockedStimDesign(t,80,0,3));
raw.draw
 
job = nirs.modules.KeepStims();
job.listOfStims = {‘B’}; %Keep stim condition ‘B’
raw = job.run(raw);
figure; raw.draw