Changeset 384 for applications
- Timestamp:
- 06/19/09 10:17:25 (16 years ago)
- Location:
- applications
- Files:
-
- 1 added
- 19 modified
- 2 copied
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/CMakeLists.txt
r319 r384 5 5 add_subdirectory (mpdm) 6 6 add_subdirectory (doprava) 7 add_subdirectory (bdmtoolbox) -
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[] ) { -
applications/doprava/k1.cpp
r357 r384 12 12 13 13 14 #include <estim/ekf_templ .h>14 #include <estim/ekf_template.h> 15 15 16 16 //include dopravni model 17 17 #include "model.h" 18 #include "stat\ libDS.h"18 #include "stat\datasources.h" 19 19 #include "stat\loggers.h" 20 20 -
applications/doprava/model.h
r283 r384 2 2 #define MODEL_H 3 3 4 #include <stat/ libFN.h>4 #include <stat/functions.h> 5 5 6 6 using namespace bdm; -
applications/mpdm/SYSID09/merg_2a.cpp
r379 r384 1 1 #include <estim/arx.h> 2 2 #include <estim/merger.h> 3 #include <stat/ libEF.h>3 #include <stat/exp_family.h> 4 4 #include <stat/loggers.h> 5 5 //#include <stat/merger.h> -
applications/mpdm/TR2244/merger_iter_cond.cpp
r379 r384 1 1 2 #include <stat/ libEF.h>2 #include <stat/exp_family.h> 3 3 #include <estim/merger.h> 4 4 -
applications/mpdm/merg_giw.cpp
r288 r384 1 1 #include <estim/arx.h> 2 2 #include <estim/merger.h> 3 #include <stat/ libEF.h>3 #include <stat/exp_family.h> 4 4 #include <stat/loggers.h> 5 5 //#include <stat/merger.h> -
applications/mpdm/merg_pred.cpp
r278 r384 1 1 #include <estim/arx.h> 2 2 #include <estim/merger.h> 3 #include <stat/ libEF.h>3 #include <stat/exp_family.h> 4 4 #include <stat/loggers.h> 5 5 //#include <stat/merger.h> -
applications/pmsm/TR2245/pmsm_wishart.cpp
r357 r384 13 13 14 14 15 #include <estim/ libPF.h>16 #include <estim/ekf_templ .h>17 #include <stat/ libFN.h>15 #include <estim/particles.h> 16 #include <estim/ekf_template.h> 17 #include <stat/functions.h> 18 18 19 19 #include "user_info.h" -
applications/pmsm/TR2245/unitsteps.cpp
r357 r384 13 13 14 14 15 #include <estim/ libPF.h>16 #include <estim/ekf_templ .h>17 #include <stat/ libFN.h>15 #include <estim/particles.h> 16 #include <estim/ekf_template.h> 17 #include <stat/functions.h> 18 18 19 19 -
applications/pmsm/TR2245/wishart.cpp
r357 r384 13 13 14 14 15 #include <estim/ libPF.h>16 #include <estim/ekf_templ .h>17 #include <stat/ libFN.h>15 #include <estim/particles.h> 16 #include <estim/ekf_template.h> 17 #include <stat/functions.h> 18 18 19 19 #include "../pmsm.h" -
applications/pmsm/mpf_load.cpp
r279 r384 13 13 14 14 15 #include <stat/ libFN.h>16 #include <estim/ libKF.h>17 #include <estim/ libPF.h>18 #include <estim/ekf_templ .h>15 #include <stat/functions.h> 16 #include <estim/kalman.h> 17 #include <estim/particles.h> 18 #include <estim/ekf_template.h> 19 19 #include <math/chmat.h> 20 20 -
applications/pmsm/pmsm.h
r377 r384 2 2 #define PMSM_H 3 3 4 #include <stat/ libFN.h>4 #include <stat/functions.h> 5 5 #include "user_info.h" 6 6 -
applications/pmsm/pmsmDS.h
r377 r384 12 12 13 13 #include <stat/loggers.h> 14 #include <estim/ libKF.h>14 #include <estim/kalman.h> 15 15 #include "simulator_zdenek/simulator.h" 16 16 #include "pmsm.h" -
applications/pmsm/pmsm_estim.cpp
r366 r384 9 9 #include "user_info.h" 10 10 #include "stat/loggers.h" 11 #include "estim/ libKF.h"11 #include "estim/kalman.h" 12 12 #include "pmsmDS.h" 13 13 -
applications/pmsm/pmsm_estim_mex.cpp
r349 r384 7 7 */ 8 8 9 #include "pmsm _ui.h"10 #include <stat/loggers_ui.h>11 #include <estim/KF_ui.h>9 #include "pmsm.h" 10 #include "stat/loggers.h" 11 #include "estim/kalman.h" 12 12 13 13 #include <itpp/itmex.h> 14 #include "../../library/mex/mex log.h"15 #include "../../library/mex/mex ds.h"16 #include "../../library/mex/mex parse.h"14 #include "../../library/mex/mex_logger.h" 15 #include "../../library/mex/mex_datasource.h" 16 #include "../../library/mex/mex_parser.h" 17 17 18 18 using namespace bdm; … … 83 83 // ------------------ End of routine ----------------------------- 84 84 85 mex log* mL=dynamic_cast<mexlog*>(L);85 mex_logger* mL=dynamic_cast<mex_logger*>(L); 86 86 87 87 if (mL) { // user wants output!! -
applications/pmsm/simulator_zdenek/ekf_example/ekf_obj.cpp
r262 r384 1 1 2 #include <estim/ libKF.h>2 #include <estim/kalman.h> 3 3 4 4 #include "ekf_obj.h" -
applications/pmsm/simulator_zdenek/ekf_example/ekf_obj.h
r283 r384 15 15 16 16 17 #include <estim/ libKF.h>17 #include <estim/kalman.h> 18 18 #include "fixed.h" 19 19 #include "matrix.h"