-
Notifications
You must be signed in to change notification settings - Fork 0
/
tapas_condhalluc_obs3_config.m
46 lines (37 loc) · 1.44 KB
/
tapas_condhalluc_obs3_config.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
function c = tapas_condhalluc_obs3_config
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Contains the configuration for the response model used to analyze data from conditioned
% hallucination paradigm by Powers & Corlett, AS MODIFIED FOR COUPLED PRIOR WEIGHTING AND
% VOLATILITY
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% --------------------------------------------------------------------------------------------------
% Copyright (C) 2020 Christoph Mathys, TNU, UZH & ETHZ
%
% This file is part of the HGF toolbox, which is released under the terms of the GNU General Public
% Licence (GPL), version 3. You can redistribute it and/or modify it under the terms of the GPL
% (either version 3 or, at your option, any later version). For further details, see the file
% COPYING or <http://www.gnu.org/licenses/>.
% Config structure
c = struct;
% Model name
c.model = 'tapas_condhalluc_obs3';
% Sufficient statistics of Gaussian parameter priors
% Beta
c.logbemu = log(48);
c.logbesa = 1;
% Gather prior settings in vectors
c.priormus = [
c.logbemu,...
];
c.priorsas = [
c.logbesa,...
];
% Model filehandle
c.obs_fun = @tapas_condhalluc_obs3;
% Handle to function that transforms observation parameters to their native space
% from the space they are estimated in
c.transp_obs_fun = @tapas_condhalluc_obs3_transp;
end