Skip to content

Commit a5b6299

Browse files
committed
change how condition reflect type of motion and not fixation position
1 parent 212c9ca commit a5b6299

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

subfun/assignConditions.m

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99
% Get the index of each condition
1010
nameCondition1 = 'static';
1111
nameCondition2 = 'motion';
12+
1213
if isfield(cfg.design, 'localizer') && strcmpi(cfg.design.localizer, 'MT_MST')
13-
nameCondition1 = 'fixation_right';
14-
nameCondition2 = 'fixation_left';
14+
15+
nameCondition1 = 'static';
16+
nameCondition2 = 'motion';
17+
1518
end
1619

1720
CONDITON1_INDEX = find(strcmp(conditionNamesVector, nameCondition1));

0 commit comments

Comments
 (0)