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 2359006 commit 991e54eCopy full SHA for 991e54e
checkCFG.m
@@ -1,4 +1,4 @@
1
-function expParameters = checkCFG(expParameters)
+function [expParameters, cfg] = checkCFG(cfg,expParameters)
2
% check that we have all the fields that we need in the experiment
3
% parameters
4
createFilename.m
@@ -30,7 +30,7 @@
30
dateFormat = 'yyyymmdd_HHMM';
31
32
% Setting some defaults: no need to change things here
33
-expParameters = checkCFG(expParameters);
+[expParameters, cfg] = checkCFG(cfg,expParameters);
34
35
% extract input
36
subjectGrp = expParameters.subjectGrp;
0 commit comments