Changeset 270 for tests/testKF.cpp

Show
Ignore:
Timestamp:
02/16/09 10:02:08 (15 years ago)
Author:
smidl
Message:

Changes in the very root classes!
* rv and rvc are no longer compulsory,
* samplecond does not return ll
* BM has drv

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • tests/testKF.cpp

    r262 r270  
    5454 
    5555        //Chol 
    56         KalmanCh KF(rx,ry,ru); 
     56        KalmanCh KF; 
    5757        KF.set_parameters(A,B,C,D,chmat(R),chmat(Q)); 
    5858        KF.set_est(mu0,chmat(P0) ); //prediction! 
     
    6363        //       
    6464        // FSQMAT 
    65         Kalman<ldmat> KFf(rx,ry,ru); 
     65        Kalman<ldmat> KFf; 
    6666        KFf.set_parameters(A,B,C,D,ldmat(R),ldmat(Q)); 
    6767        KFf.set_est(mu0,ldmat(P0) ); 
     
    7777         
    7878        // EKF 
    79         bilinfn fxu(rx,ru,A,B); 
    80         bilinfn hxu(rx,ru,C,D); 
    81         EKFCh KFE(rx,ry,ru); 
     79        bilinfn fxu(A,B); 
     80        bilinfn hxu(C,D); 
     81        EKFCh KFE; 
    8282        KFE.set_parameters(&fxu,&hxu,Q,R); 
    8383        KFE.set_est(mu0,chmat(P0));