Created
March 1, 2018 13:24
-
-
Save drbenvincent/d1043f0395e6f44a9a5940a142cebc4c to your computer and use it in GitHub Desktop.
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
% Add tooolbox code to path | |
addpath('~/git-local/darc-experiments-matlab') | |
% Run the toolbox setup code | |
env_setup | |
% Get participant information with GUI | |
[expt_options] = getHumanExperimentOptions(); | |
plotting_style = 'full'; | |
%% Set up experiment | |
model = Model_hyperbolic1_time('epsilon', 0.01); | |
expt = Experiment(model,... | |
'plotting', plotting_style,... | |
'expt_options', expt_options); | |
expt = expt.set_human_response_options(... | |
{'commodity_type', 'GBP',... | |
'delay_framing', 'delay'}); | |
expt.runTrials() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment