Changeset 283 for bdm/estim/libKF.cpp

Show
Ignore:
Timestamp:
02/24/09 14:14:01 (15 years ago)
Author:
smidl
Message:

get rid of BMcond + adaptation in doprava/

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/estim/libKF.cpp

    r279 r283  
    6969 
    7070        dimx = pfxu0->_dimx(); 
    71         dimy = phxu0->_dimy(); 
     71        dimy = phxu0->dimension(); 
    7272        dimu = pfxu0->_dimu(); 
    7373 
     
    169169        phxu = phxu0; 
    170170 
    171         dimx = pfxu0->_dimy(); 
    172         dimy = phxu0->_dimy(); 
     171        dimx = pfxu0->dimension(); 
     172        dimy = phxu0->dimension(); 
    173173        dimu = pfxu0->_dimu(); 
    174174        // set size of mu - just for constant terms of A and C  
     
    249249} 
    250250 
    251 void KFcondQR::condition ( const vec &QR ) { 
    252         it_assert_debug ( QR.length() == ( dimx+dimy ),"KFcondRQ: conditioning by incompatible vector" ); 
    253  
    254         Q.setD ( QR ( 0, dimx-1 ) ); 
    255         R.setD ( QR ( dimx, -1 ) ); 
    256 }; 
    257  
    258 void KFcondR::condition ( const vec &R0 ) { 
    259         it_assert_debug ( R0.length() == ( dimy ),"KFcondR: conditioning by incompatible vector" ); 
    260  
    261         R.setD ( R0 ); 
    262 }; 
    263  
    264  
    265 } 
     251}