root/library/tests/stresssuite/merger_iter_stress.cpp @ 721

Revision 721, 1.6 kB (checked in by mido, 15 years ago)

stresssuite - halfway point

Line 
1#include "stat/exp_family.h"
2#include "stat/merger.h"
3#include "../mat_checks.h"
4
5using namespace bdm;
6
7//These lines are needed for use of cout and endl
8using std::cout;
9using std::endl;
10
11TEST ( merger_iter_stress ) {
12
13        RNG_randomize();
14
15        RV x ( "{x }", "1" );
16        RV y ( "{y }", "1" );
17
18        RV xy = x;
19        xy.add ( y );
20
21        enorm_fsqmat_ptr f1;
22        f1->set_rv ( xy );
23        enorm_fsqmat_ptr f2;
24        f2->set_rv ( xy );
25        enorm_fsqmat_ptr f3;
26        f3->set_rv ( y );
27
28        f1->set_parameters ( "4 3", mat ( "0.4 0.3; 0.3 0.4" ) );
29        f2->set_parameters ( "1 3", mat ( "0.3 -0.2; -0.2 0.3" ) );
30        f3->set_parameters ( "2", mat ( "0.4" ) );
31
32        pdf_array A ( 3 );
33        A ( 0 ) = f1;
34        A ( 1 ) = f2;
35        A ( 2 ) = f3;
36
37        int Npoints = 100;
38        mat x_grid ( 1, Npoints );
39        x_grid.set_row ( 0, linspace ( -2.0, 4.0, Npoints ) );
40        mat y_grid ( 1, Npoints );
41        y_grid.set_row ( 0, linspace ( -2.0, 4.0, Npoints ) );
42
43        mat Grid ( 2, Npoints*Npoints );
44        Grid.set_submatrix ( 0, 0, kron ( x_grid, ones ( 1, Npoints ) ) );
45        Grid.set_submatrix ( 1, 0, kron ( ones ( 1, Npoints ), y_grid ) );
46
47        merger_mix M ( A );
48        enorm<fsqmat> g0;
49        g0.set_rv ( xy );
50        g0.set_parameters ( vec ( "4 4" ), mat ( "1 0; 0 1" ) );
51
52        M.set_parameters ( 5 );
53        M.set_method ( LOGNORMAL, 1.2 );
54        M.set_support ( g0, 400 );
55        M.merge();
56
57        MixEF &MM = M._Mix();
58        epdf* MP = MM.epredictor();//xy
59
60        vec Res1 = M.evallog_mat ( Grid );
61        mat Res2 = ( ( emix* ) MP )->evallog_coms ( Grid );
62
63        it_file it ( "merger_iter_test.it" );
64        it << Name ( "Npoints" ) << Npoints;
65        it << Name ( "Grid" ) << Grid;
66        it << Name ( "Res1" ) << Res1;
67        it << Name ( "Res2" ) << Res2;
68}
Note: See TracBrowser for help on using the browser.