We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cd8456 commit 2359006Copy full SHA for 2359006
checkCFG.m
@@ -22,11 +22,21 @@
22
'acq' % For BIDS file naming: acquisition of fMRI images
23
};
24
25
+fields2CheckFalse = { ...
26
+ 'eyeTracker'
27
+ }
28
+
29
for iField = 1:numel(fields2Check)
30
if ~isfield(expParameters, fields2Check{iField})
31
expParameters = setfield(expParameters, fields2Check{iField}, []); %#ok<SFLD>
32
end
33
34
35
+for iField = 1:numel(fields2CheckFalse)
36
+ if ~isfield(cfg, fields2CheckFalse{iField})
37
+ cfg = setfield(cfg, fields2CheckFalse{iField}, false); %#ok<SFLD>
38
+ end
39
+end
40
-end
41
42
0 commit comments