Changeset 254 for bdm/estim

Show
Ignore:
Timestamp:
01/28/09 10:00:56 (15 years ago)
Author:
smidl
Message:

create namespace bdm

Location:
bdm/estim
Files:
11 modified

Legend:

Unmodified
Added
Removed
  • bdm/estim/arx.cpp

    r204 r254  
    11#include "arx.h" 
    22 
    3 using namespace itpp; 
     3namespace bdm{ 
    44 
    55void ARX::bayes ( const vec &dt, const double w ) { 
     
    182182        return ind; 
    183183} 
     184 
     185} 
  • bdm/estim/arx.h

    r200 r254  
    1818#include "../stat/libEF.h" 
    1919 
    20 using namespace itpp; 
     20namespace bdm{ 
    2121 
    2222/*! 
     
    8282}; 
    8383 
     84} 
    8485 
    8586#endif // AR_H 
  • bdm/estim/ekf_templ.h

    r231 r254  
    1616#include "libKF.h" 
    1717 
    18 using namespace itpp; 
     18namespace bdm{ 
    1919 
    2020//!Extended Kalman filter with unknown \c Q and \c R 
     
    5151}; 
    5252 
     53} 
    5354#endif //EKF_TEMP_H 
  • bdm/estim/libKF.cpp

    r231 r254  
    22#include "libKF.h" 
    33 
    4 using namespace itpp; 
     4namespace bdm{ 
    55 
    66using std::endl; 
     
    254254 
    255255 
     256} 
  • bdm/estim/libKF.h

    r223 r254  
    1919#include "../math/chmat.h" 
    2020 
    21 using namespace itpp; 
     21namespace bdm{ 
    2222 
    2323/*! 
     
    401401 
    402402 
     403} 
    403404#endif // KF_H 
    404405 
  • bdm/estim/libPF.cpp

    r211 r254  
    11#include "libPF.h" 
    22 
    3 using namespace itpp; 
     3namespace bdm{ 
    44 
    55using std::endl; 
     
    4141} 
    4242 
     43} 
    4344//MPF::MPF:{} 
  • bdm/estim/libPF.h

    r234 r254  
    1818#include "../math/libDC.h" 
    1919 
    20 using namespace itpp; 
     20namespace bdm{ 
    2121 
    2222/*! 
     
    197197} 
    198198 
     199} 
    199200#endif // KF_H 
    200201 
  • bdm/estim/merger.cpp

    r213 r254  
    33#include "arx.h" 
    44 
     5namespace bdm{ 
    56vec merger::lognorm_merge ( mat &lW ) { 
    67        int nu=lW.rows(); 
     
    196197} 
    197198 
     199} 
  • bdm/estim/merger.h

    r229 r254  
    1717#include "mixef.h" 
    1818 
    19 using namespace itpp; 
     19namespace bdm{ 
    2020using std::string; 
    2121 
     
    140140}; 
    141141 
    142  
     142} 
    143143 
    144144#endif // MER_H 
  • bdm/estim/mixef.cpp

    r198 r254  
    22#include <vector> 
    33 
    4 using namespace itpp; 
     4namespace bdm{ 
    55 
    66 
     
    152152        weights.set_statistics(&(Mix2->weights)); 
    153153} 
     154} 
  • bdm/estim/mixef.h

    r200 r254  
    1919#include "../stat/emix.h" 
    2020 
    21 using namespace itpp; 
     21namespace bdm{ 
    2222 
    2323enum MixEF_METHOD { EM = 0, QB = 1}; 
     
    116116}; 
    117117 
    118  
     118} 
    119119#endif // MEF_H 
    120120