root/applications/bdmtoolbox/tutorial/mpdm/dist_ctrl_example.m @ 774

Revision 774, 1.3 kB (checked in by smidl, 14 years ago)

ARENA + MC experiment

Line 
1% name random variables
2y = RV({'y'},1);
3u1 = RV({'u1'},1);
4u2 = RV({'u2'},1);
5
6% create f(y_t| y_{t-3}, u_{t-1})
7fy.class = 'mlnorm<ldmat>';
8fy.rv    = y;
9fy.rvc   = RVtimes([y,u1,u2], [-3, 0, 0]);
10fy.A     = [0.5, -0.9, 0.9];
11fy.const = 0;
12fy.R     = 1e-2;
13
14DS.class = 'PdfDS';
15DS.pdf = fy;
16
17% create ARX estimator
18A1.class = 'ARX';
19A1.rv = y;
20A1.rgr = RVtimes([y,u1],[-3,0]) ; % correct structure is {y,y}
21A1.options ='logbounds,logll';
22A1.frg = 0.95;
23
24A2=A1;
25A2.rgr = RVtimes([y,u2],[-3,0]) ; % correct structure is {y,y}
26
27
28C1.class = 'LQG_ARX';
29C1.ARX = A1;
30C1.Qu = 0.1*eye(1);
31C1.Qy = 1*eye(1);
32C1.yreq = 1;
33C1.horizon = 5;
34
35C2=C1;
36C2.ARX = A2;
37
38P1.class = 'ARXAgent';
39P1.name = 'P1';
40P1.lqg_arx = C1;
41P1.lqg_arx.class = 'LQG_ARX';
42P1.merger.class = 'merger_mix';
43P1.merger.method = 'geometric';
44%P1.merger.dbg_file = 'mp.it';
45P1.merger.ncoms = 20;
46P1.neighbours = {};%{'P2'};
47
48P2=P1;
49P2.name = 'P2';
50P2.lqg_arx = C2;
51P2.neighbours = {};
52
53exper.Ndat = 10;
54exper.burnin = 3;
55exper.burn_pdf.class = 'enorm<ldmat>';
56exper.burn_pdf.mu = [0;0];
57exper.burn_pdf.R  = 0.01*eye(2);
58
59
60%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% MONTE CARLO %%%%%%%%%%%%%%%%%%%
61
62Ntrials = 100;
63loss_non_coop = zeros(1,Ntrials);
64for i=1:Ntrials
65    M= arena(DS,{P1,P2},exper);
66
67    loss_non_coop(i) = M.DS_y'*C1.Qy*M.DS_y + M.DS_u1'*C1.Qu*M.DS_u1 + M.DS_u2'*C1.Qu*M.DS_u2;
68end
69mean(loss_non_coop)
Note: See TracBrowser for help on using the browser.