nirs.modules.KeepSubs
This module can removes all subject except those specified.
Example Usage:
for i = 1:5
raw(i) = nirs.testing.simData;
end
% Adding demographic manually
% Let’s assume that the SubjectID is in the correct order
for i = 1:5
raw(i).demographics(‘Subject’) = [‘S’ num2str(i)];
end
nirs.createDemographicsTable(raw)
job = nirs.modules.KeepSubs();
job.listOfFilters = {‘Subject’, {‘S1’,‘S2’}}
raw = job.run(raw);
nirs.createDemographicsTable(raw)