Changeset 700 for applications/bdmtoolbox/mex
- Timestamp:
- 11/04/09 22:54:58 (15 years ago)
- Location:
- applications/bdmtoolbox/mex
- Files:
-
- 1 removed
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/bdmtoolbox/mex/estimator.cpp
r685 r700 48 48 */ 49 49 50 #include "estim/arx.h"51 #include "stat/emix.h"52 #include "base/datasources.h"53 #include "base/loggers.h"54 #include "estim/particles.h"55 #include "estim/kalman.h"50 #include <estim/arx.h> 51 #include <stat/emix.h> 52 #include <base/datasources.h> 53 #include <base/loggers.h> 54 #include <estim/particles.h> 55 #include <estim/kalman.h> 56 56 57 57 //#include "mex_datasource.h" … … 61 61 #ifdef MEX 62 62 #include <itpp/itmex.h> 63 #include "mex/mex_BM.h"64 #include "mex/mex_logger.h"65 #include "mex/mex_datasource.h"63 #include <mex/mex_BM.h> 64 #include <mex/mex_logger.h> 65 #include <mex/mex_datasource.h> 66 66 67 67 void mexFunction ( int n_output, mxArray *output[], int n_input, const mxArray *input[] ) { … … 120 120 Array<shared_ptr<BM> > Es; 121 121 UI::get ( Es,Cfg, "estimators" ); 122 longNdat=10;122 int Ndat=10; 123 123 if ( Cfg.exists ( "experiment" ) ) { 124 if ( Cfg. lookupValue ( "experiment.ndat",Ndat ) ) {124 if ( Cfg.getRoot().lookupValue ( "experiment.ndat",Ndat ) ) { 125 125 bdm_assert ( Ndat<=Ds->max_length(), "Data source has less data then required" ); 126 126 }; -
applications/bdmtoolbox/mex/merger.cpp
r685 r700 58 58 #endif 59 59 // Sources 60 Array<shared_ptr< mpdf> > Sources;60 Array<shared_ptr<pdf> > Sources; 61 61 UI::get(Sources, Cfg, "Sources", UI::compulsory); 62 62 shared_ptr<merger_base> Merger = UI::build<merger_base> ( Cfg, "Merger" ); -
applications/bdmtoolbox/mex/simulator.cpp
r676 r700 39 39 */ 40 40 41 #include "estim/arx.h"42 #include "stat/emix.h"43 #include "base/datasources.h"44 #include "base/loggers.h"41 #include <estim/arx.h> 42 #include <stat/emix.h> 43 #include <base/datasources.h> 44 #include <base/loggers.h> 45 45 46 46 //#include "mex_datasource.h" … … 104 104 105 105 shared_ptr<DS> Ds = UI::build<DS> ( Cfg, "system" ); 106 longNdat=10;106 int Ndat=10; 107 107 if ( Cfg.exists ( "experiment" ) ) { 108 108 if ( Cfg.lookupValue ( "experiment.ndat",Ndat ) ) {