root/library/tests/test_kalman.cpp @ 583

Revision 583, 2.5 kB (checked in by smidl, 15 years ago)

redesign of Kalman to use BM, new object StateSpace? created

  • Property svn:eol-style set to native
RevLine 
[262]1
[386]2#include <estim/kalman.h>
[7]3
[254]4using namespace bdm;
[7]5
6//These lines are needed for use of cout and endl
7using std::cout;
8using std::endl;
9
10int main() {
[33]11        // Kalman filter
[477]12        mat A, B, C, D, R, Q, P0;
[8]13        vec mu0;
14        mat Mu0;;
15        // input from Matlab
[477]16        it_file fin ( "testKF.it" );
[11]17
[37]18        mat Dt;
[8]19        int Ndat;
[7]20
[477]21        bool xxx = fin.seek ( "d" );
22        if ( !xxx ) {
[565]23                bdm_error ( "testKF.it not found" );
[477]24        }
25        fin >> Dt;
26        fin.seek ( "A" );
[8]27        fin >> A;
[477]28        fin.seek ( "B" );
[8]29        fin >> B;
[477]30        fin.seek ( "C" );
[8]31        fin >> C;
[477]32        fin.seek ( "D" );
[8]33        fin >> D;
[477]34        fin.seek ( "R" );
[8]35        fin >> R;
[477]36        fin.seek ( "Q" );
37        fin >> Q;
38        fin.seek ( "P0" );
39        fin >> P0;
40        fin.seek ( "mu0" );
41        fin >> Mu0;
42        mu0 = Mu0.get_col ( 0 );
43
[87]44        Ndat = 10;//Dt.cols();
[37]45        int dimx = A.rows();
[477]46
[37]47        // Prepare for Kalman filters in BDM:
[477]48        RV rx ( "{x }", vec_1 ( A.cols() ) );
49        RV ru ( "{u }", vec_1 ( B.cols() ) );
50        RV ry ( "{y }", vec_1 ( C.rows() ) );
51
[37]52//      // LDMAT
53//      Kalman<ldmat> KF(rx,ry,ru);
54//      KF.set_parameters(A,B,C,D,ldmat(R),ldmat(Q));
55//      KF.set_est(mu0,ldmat(P0) );
[271]56//      epdf& KFep = KF.posterior();
[477]57//      mat Xt(2,Ndat);
[37]58//      Xt.set_col( 0,KFep.mean() );
[7]59
[37]60        //Chol
[270]61        KalmanCh KF;
[477]62        KF.set_parameters ( A, B, C, D, chmat ( R ), chmat ( Q ) );
[583]63        KF.set_statistics ( mu0, chmat ( P0 ) ); //prediction!
[271]64        const epdf& KFep = KF.posterior();
[477]65        mat Xt ( dimx, Ndat );
66        Xt.set_col ( 0, KFep.mean() );
67
[37]68        // FULL
[583]69        KalmanFull KF2;
70        KF2.set_parameters( A, B, C, D, R, Q);
71        KF2.set_statistics(  mu0, P0 );
[477]72        mat Xt2 ( dimx, Ndat );
73        Xt2.set_col ( 0, mu0 );
[37]74
[477]75
[37]76        // EKF
[527]77        shared_ptr<bilinfn> fxu = new bilinfn ( A, B );
78        shared_ptr<bilinfn> hxu = new bilinfn ( C, D );
[270]79        EKFCh KFE;
[527]80        KFE.set_parameters ( fxu, hxu, Q, R );
[583]81        KFE.set_statistics ( mu0, chmat ( P0 ) );
[271]82        const epdf& KFEep = KFE.posterior();
[477]83        mat XtE ( dimx, Ndat );
84        XtE.set_col ( 0, KFEep.mean() );
[8]85
[37]86        //test performance of each filter
87        Real_Timer tt;
[583]88        vec exec_times ( 3 ); // KF, KF2, KFE
[477]89
[37]90        tt.tic();
[477]91        for ( int t = 1; t < Ndat; t++ ) {
92                KF.bayes ( Dt.get_col ( t ) );
93                Xt.set_col ( t, KFep.mean() );
[37]94        }
[477]95        exec_times ( 0 ) = tt.toc();
96
[37]97        tt.tic();
[477]98        for ( int t = 1; t < Ndat; t++ ) {
[583]99                KF2.bayes ( Dt.get_col ( t ) );
100                Xt2.set_col ( t, KF2.posterior().mean() );
[37]101        }
[477]102        exec_times ( 1 ) = tt.toc();
[37]103
104        tt.tic();
[477]105        for ( int t = 1; t < Ndat; t++ ) {
106                KFE.bayes ( Dt.get_col ( t ) );
107                XtE.set_col ( t, KFEep.mean() );
[7]108        }
[583]109        exec_times ( 2 ) = tt.toc();
[7]110
[37]111
[477]112        it_file fou ( "testKF_res.it" );
113        fou << Name ( "xth" ) << Xt;
114        fou << Name ( "xth2" ) << Xt2;
115        fou << Name ( "xthE" ) << XtE;
116        fou << Name ( "exec_times" ) << exec_times;
[7]117        //Exit program:
118        return 0;
119
120}
Note: See TracBrowser for help on using the browser.