close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Ticket #506: test.tol

File test.tol, 616 bytes (added by Jorge, 18 years ago)

test.tol

Line 
1//////////////////////////////////////////////////////////////////////////////
2// FILE   : test.tol
3// PURPOSE:
4//////////////////////////////////////////////////////////////////////////////
5
6Set info2 = Ois.Load("trouble.oza")[1];
7
8Matrix nu2 = info2["nu"];
9Matrix S2 = info2["S"];
10Matrix BCon2 = info2["BCon"];
11Matrix bCon2 = info2["bCon"];
12Matrix paramIni2 = info2["paramIni"];
13
14Real Size = 20;
15Real Burning = 5;
16
17Set SVD(S2);
18Matrix chol = Choleski(S2);
19
20Matrix markovChain =
21  GibbsConstrainedMNormal(nu2, S2, BCon2, bCon2, 1,
22                          Size,
23                          Burning, paramIni2);
24
25