forked from vistalab/vistadisp
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added wrapper to run colour pRF bar exp
- Loading branch information
1 parent
302f81f
commit e94eb54
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
% runme for the colorful stimulus | ||
% 192 TRs | ||
|
||
%% | ||
|
||
params = retCreateDefaultGUIParams; | ||
params.fixation = 'dot with grid'; | ||
params.tr = 1; | ||
params.skipSyncTests = 0; | ||
params.calibration = 'CBI_Propixx'; | ||
params.prescanDuration = 0; | ||
params.experiment = 'Experiment From File'; | ||
params.doEyelink = true; | ||
%% stim file | ||
|
||
%% run it | ||
|
||
for ii = 1:6 | ||
params.loadMatrix = sprintf('ret_%d.mat', ii); | ||
ret(params); | ||
end |