Changeset 384 for applications/bdmtoolbox
- Timestamp:
- 06/19/09 10:17:25 (16 years ago)
- Location:
- applications/bdmtoolbox
- Files:
-
- 1 added
- 2 modified
- 2 copied
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/bdmtoolbox/estimator.cpp
r357 r384 44 44 >> Res=estimator('config_file.cfg'); 45 45 \endcode 46 when using logger of the type \c "mex log". The results will be stored in structure \c M.46 when using logger of the type \c "mex_logger". The results will be stored in structure \c M. 47 47 48 48 */ 49 49 50 #include "stat/ libDS.h"50 #include "stat/datasources.h" 51 51 #include "estim/arx.h" 52 52 #include "user_info.h" -
applications/bdmtoolbox/mex/estimator.cpp
r373 r384 2 2 3 3 #include "estim/arx.h" 4 #include "stat/ libDS.h"4 #include "stat/datasources.h" 5 5 #include "stat/loggers.h" 6 #include "mex log.h"6 #include "mex_logger.h" 7 7 8 //#include "mex ds.h"8 //#include "mex_datasource.h" 9 9 10 10 using namespace bdm; … … 54 54 // ------------------ End of routine ----------------------------- 55 55 56 mex log* mL=dynamic_cast<mexlog*>(L);56 mex_logger* mL=dynamic_cast<mex_logger*>(L); 57 57 58 58 if (mL) { // user wants output!! -
applications/bdmtoolbox/mex/mxstruct2config.cpp
r331 r384 1 #include "mex parse.h"1 #include "mex_parser.h" 2 2 3 3 void mexFunction ( int n_output, mxArray *output[], int n_input, const mxArray *input[] ) {