Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3ca22f7

Browse files
authoredMar 22, 2022
Merge pull request #112 from marcobarilari/marco_las-testing-ses
Changes from testing session 18-03-2022
2 parents 2960371 + e8e390d commit 3ca22f7

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed
 

‎cfgMST.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
% fixation cross displacement in degrees of visual angles
2828
% this will also shift the whole FOV relative to the center of the screen
2929
% Note: negative values will move things to the left and up.
30-
cfg.fixation.xDisplacement = 0;
31-
cfg.fixation.yDisplacement = 0;
30+
cfg.fixation.xDisplacement = -3.676540;
31+
cfg.fixation.yDisplacement = -0.499724;
3232

3333
% determines position of the fixation cross on the right / left
3434
% should be a bit less than the: ( width of FOV ) / 2

‎cfgMT.m

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,24 @@
88

99
cfg.timing.triggerIBI = 4;
1010

11-
cfg.mri.triggerNb = 0;
12-
11+
cfg.mri.triggerNb = 5;
12+
13+
% Time between events in secs
14+
cfg.timing.ISI = 0;
15+
% Time between blocs in secs
16+
cfg.timing.IBI = 5.4;
17+
% Number of seconds before the motion stimuli are presented
18+
cfg.timing.onsetDelay = 0;
19+
% Number of seconds after the end all the stimuli before ending the run
20+
cfg.timing.endDelay = 0;
21+
1322
cfg.design.nbRepetitions = 15;
1423

1524
cfg.design.nbEventsPerBlock = 12;
1625

1726
% in Liege is 0.79 (tsry less)
1827
% in mcas is 0.43
19-
cfg.timing.eventDuration = 0.79; % .86 second
28+
cfg.timing.eventDuration = 0.75; % .86 second
2029

2130
%% variable FOV info
2231
% in case the field of view is not properly centered or obstructed
@@ -33,8 +42,7 @@
3342
% fixation cross displacement in degrees of visual angles
3443
% this will also shift the whole FOV relative to the center of the screen
3544
% Note: negative values will move things to the left and up.
36-
37-
cfg.fixation.xDisplacement = 0;
38-
cfg.fixation.yDisplacement = 0;
45+
cfg.fixation.xDisplacement = -3.676540;
46+
cfg.fixation.yDisplacement = -0.499724;
3947

4048
end

‎main.m

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@
1313

1414
cfg.verbose = 1;
1515

16-
cfg.debug.do = true;
17-
cfg.debug.transpWin = true;
16+
cfg.debug.do = false;
17+
cfg.debug.transpWin = false;
1818
cfg.debug.smallWin = false;
1919

2020
cfg.audio.devIdx = 5;
2121

2222
cfg.eyeTracker.do = true;
23-
% in liege
23+
24+
% in liege 7.5
25+
% on Marco's mac 15
2426
cfg.dot.speed = 7.5;
2527

2628
%% Run MT+ localizer

0 commit comments

Comments
 (0)
Please sign in to comment.