forked from rickvandervliet/Bayesian-state-space
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBayesianStateSpaceModel.m
43 lines (39 loc) · 1.87 KB
/
BayesianStateSpaceModel.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
function [samples, stats, structArray] = BayesianStateSpaceModel(aimingError, rotation, showCursor)
NChains = 1;
NBurnin = 2*10^4;
NSamples = 5*10^4;
doparallel = 1;
indices = abs(aimingError+rotation)>30;
aimingError(indices) = NaN;
NTrials = size(aimingError,1);
dataStruct = struct('y', aimingError, ...
'p', rotation,...
'v', showCursor,...
'NSubjects', size(aimingError,2),...
'TrialStart', 1,...
'TrialEnd', NTrials);
for i=1:NChains
S(i).A1mu = 0.5;
S(i).A1prec = 0.5;
S(i).A1 = ones(size(aimingError,2),1);
S(i).B1mu = 0.5;
S(i).B1prec = 0.5;
S(i).B1 = ones(size(aimingError,2),1);
S(i).x = [aimingError; aimingError(NTrials,:)];
S(i).etaprec = ones(size(aimingError,2),1);
S(i).epsilonprec = ones(size(aimingError,2),1);
end;
[samples, stats, structArray] = matjags( ...
dataStruct, ... % Observed data
fullfile(pwd, 'BayesianStateSpaceModel.txt'), ... % File that contains model definition
S, ... % Initial values for latent variables
'doparallel' , doparallel, ... % Parallelization flag
'nchains', NChains,... % Number of MCMC chains
'nburnin', NBurnin,... % Number of burnin steps
'nsamples', NSamples, ... % Number of samples to extract
'thin', 1, ... % Thinning parameter
'dic', 0, ... % Do the DIC?
'monitorparams', {'A','B','q','r'}, ... % List of latent variables to monitor
'savejagsoutput' , 1 , ... % Save command line output produced by JAGS?
'verbosity' , 2 , ... % 0=do not produce any output; 1=minimal text output; 2=maximum text output
'cleanup' , 1); % clean up of temporary files?