Created
March 1, 2018 13:34
-
-
Save drbenvincent/7043e01520c8b906f77ef5032563ea9f to your computer and use it in GitHub Desktop.
This file contains hidden or 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_hyperboloid_prob('epsilon', 0.01); | |
expt = Experiment(model,... | |
'plotting', plotting_style,... | |
'expt_options', expt_options); | |
expt = expt.set_human_response_options(... | |
{'commodity_type', 'GBP'}); | |
expt.runTrials() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment