root/library/tests/enorm.cfg @ 443

Revision 443, 0.8 kB (checked in by vbarta, 15 years ago)

converted some enorm tests to configurable

Line 
1data = (
2{
3  class = "epdf_harness";
4  epdf = {
5    class = "enorm<ldmat>";
6    mu = [ 1.1, -1.0 ];
7    R = ( "matrix", 2, 2, [ 1.0, -0.5, -0.5, 2.0 ] );
8    rv :
9    {
10      class = "RV";
11      names = ( "x", "y" );
12    };
13  };
14  mean = [ 1.1, -1.0 ];
15  lognc = 2.11768;
16  variance = [ 1, 2 ];
17  support = ( "matrix", 2, 2, [ -5.0, 5.0, -5.0, 5.0 ] );
18  integral = 1.0;
19},
20{
21  class = "epdf_harness";
22  epdf = {
23    class = "enorm<fsqmat>";
24    mu = [ 0.0, 0.0 ];
25    R = ( "matrix", 2, 2, [ 5.0, -0.05, -0.05, 5.2 ] );
26    rv :
27    {
28      class = "RV";
29      names = ( "x" );
30    };
31  };
32  mean = [ 0.0, 0.0 ];
33  lognc = 2.11768;
34  variance = [ 5.0, 5.2 ];
35  support = ( "matrix", 2, 2, [ -10.0, 10.0, -10.0, 10.0 ] );
36  nbins = [ 200, 200 ];
37  integral = 1.0;
38} );
39
Note: See TracBrowser for help on using the browser.