Show
Ignore:
Timestamp:
10/23/09 00:05:25 (15 years ago)
Author:
smidl
Message:

Major changes in BM -- OK is only test suite and tests/tutorial -- the rest is broken!!!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/tutorial/kalman_simple.cpp

    r477 r679  
    2020        KF.set_parameters ( A, B, C, D,/*covariances*/ Q, R ); 
    2121        KF.set_statistics ( mu0, P0 ); 
     22        KF.validate(); 
    2223        // Estimation loop 
    2324        for ( int i = 0; i < 100; i++ ) { 
    24                 KF.bayes ( randn ( dx + du ) ); 
     25                KF.bayes ( randn ( dy), randn( du ) ); 
    2526        } 
    2627        //print results