nirs.modules.KeepSubs

Untitled

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)
ans = 5×1 table
 Subject
1‘S1’
2‘S2’
3‘S3’
4‘S4’
5‘S5’
 
job = nirs.modules.KeepSubs();
job.listOfFilters = {‘Subject’, {‘S1’,‘S2’}}
job =
KeepSubs with properties: listOfFilters: {‘Subject’ {1×2 cell}} remove_matches: 0 name: ‘Keep Just These Subjects’ prevJob: []
raw = job.run(raw);
 
nirs.createDemographicsTable(raw)
ans = 2×1 table
 Subject
1‘S1’
2‘S2’