Show
Ignore:
Timestamp:
06/19/09 10:17:25 (15 years ago)
Author:
mido
Message:

possibly broken?

Location:
applications/bdmtoolbox
Files:
1 added
2 modified
2 copied
3 moved

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/estimator.cpp

    r357 r384  
    4444>> Res=estimator('config_file.cfg'); 
    4545\endcode 
    46 when using logger of the type \c "mexlog". The results will be stored in structure \c M. 
     46when using logger of the type \c "mex_logger". The results will be stored in structure \c M. 
    4747 
    4848 */ 
    4949 
    50 #include "stat/libDS.h" 
     50#include "stat/datasources.h" 
    5151#include "estim/arx.h" 
    5252#include "user_info.h" 
  • applications/bdmtoolbox/mex/estimator.cpp

    r373 r384  
    22 
    33#include "estim/arx.h" 
    4 #include "stat/libDS.h" 
     4#include "stat/datasources.h" 
    55#include "stat/loggers.h" 
    6 #include "mexlog.h" 
     6#include "mex_logger.h" 
    77 
    8 //#include "mexds.h" 
     8//#include "mex_datasource.h" 
    99 
    1010using namespace bdm; 
     
    5454        // ------------------ End of routine ----------------------------- 
    5555         
    56         mexlog* mL=dynamic_cast<mexlog*>(L); 
     56        mex_logger* mL=dynamic_cast<mex_logger*>(L); 
    5757 
    5858        if (mL) { // user wants output!! 
  • applications/bdmtoolbox/mex/mxstruct2config.cpp

    r331 r384  
    1 #include "mexparse.h" 
     1#include "mex_parser.h" 
    22 
    33void mexFunction ( int n_output, mxArray *output[], int n_input, const mxArray *input[] ) {