|
23 | 23 | cfg.eyeTracker.do = false; |
24 | 24 | cfg.audio.do = false; |
25 | 25 |
|
26 | | - cfg = setMonitor(cfg, cfg); |
| 26 | + cfg = setMonitor(cfg); |
27 | 27 |
|
28 | 28 | % Keyboards |
29 | | - cfg = setKeyboards(cfg, cfg); |
| 29 | + cfg = setKeyboards(cfg); |
30 | 30 |
|
31 | 31 | % MRI settings |
32 | | - cfg = setMRI(cfg, cfg); |
| 32 | + cfg = setMRI(cfg); |
33 | 33 |
|
34 | 34 | %% Experiment Design |
35 | 35 | cfg.names = {'static', 'motion'}; |
36 | 36 | cfg.possibleDirections = [-1 1]; % 1 motion , -1 static |
37 | 37 | cfg.numBlocks = size(cfg.possibleDirections, 2); |
38 | 38 | cfg.numRepetitions = 1; % AT THE MOMENT IT IS NOT SET IN THE MAIN SCRIPT |
39 | | - cfg.IBI = 0; % 8; |
| 39 | + cfg.IBI = .5; % 8; |
40 | 40 | % Time between events in secs |
41 | | - cfg.ISI = 0.1; |
| 41 | + cfg.ISI = 0.5; |
42 | 42 | % Number of seconds before the motion stimuli are presented |
43 | | - cfg.onsetDelay = 1; |
| 43 | + cfg.onsetDelay = .1; |
44 | 44 | % Number of seconds after the end all the stimuli before ending the run |
45 | | - cfg.endDelay = 1; |
| 45 | + cfg.endDelay = .1; |
46 | 46 |
|
47 | 47 | %% Visual Stimulation |
48 | 48 |
|
|
66 | 66 | % Diameter/length of side of aperture in Visual angles |
67 | 67 | cfg.aperture.type = 'circle'; |
68 | 68 | cfg.aperture.width = []; % if left empty it will take the screen height |
| 69 | + cfg.aperture.xPos = 0; |
69 | 70 |
|
70 | 71 | %% Task(s) |
71 | 72 |
|
|
78 | 79 | cfg.fixation.type = 'cross'; |
79 | 80 | cfg.fixation.colorTarget = cfg.color.red; |
80 | 81 | cfg.fixation.color = cfg.color.white; |
81 | | - cfg.fixation.width = .15; |
| 82 | + cfg.fixation.width = 1; |
82 | 83 | cfg.fixation.lineWidthPix = 2; |
| 84 | + cfg.fixation.xDisplacement = 0; |
| 85 | + cfg.fixation.yDisplacement = 0; |
83 | 86 |
|
84 | 87 | cfg.target.maxNbPerBlock = 2; |
85 | | - cfg.target.duration = 0.15; % In secs |
| 88 | + cfg.target.duration = 0.05; % In secs |
86 | 89 |
|
87 | 90 | cfg.extraColumns = {'direction', 'speed', 'target', 'event', 'block'}; |
88 | 91 | end |
|
122 | 125 | cfg.text.color = cfg.color.white; |
123 | 126 |
|
124 | 127 | % Monitor parameters |
125 | | - cfg.screen.monitorWidth = 42; % in cm |
126 | | - cfg.screen.monitorDistance = 134; % distance from the screen in cm |
| 128 | + cfg.screen.monitorWidth = 50; % in cm |
| 129 | + cfg.screen.monitorDistance = 40; % distance from the screen in cm |
127 | 130 |
|
128 | 131 | if strcmpi(cfg.testingDevice, 'mri') |
129 | | - cfg.screen.monitorWidth = 42; |
130 | | - cfg.screen.monitorDistance = 134; |
| 132 | + cfg.screen.monitorWidth = 50; |
| 133 | + cfg.screen.monitorDistance = 40; |
131 | 134 | end |
132 | 135 | end |
0 commit comments