Show
Ignore:
Timestamp:
11/17/09 00:54:28 (15 years ago)
Author:
smidl
Message:

logger now has ability to store settings - used in estimator. New mexfunction epdf_mean

Location:
applications/bdmtoolbox/mex
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/mex/CMakeLists.txt

    r704 r728  
     1 
     2## SCENARIOS 
    13 
    24MEX(merger) 
     
    1416MEX(config2mxstruct) 
    1517MEX(mxstruct2config) 
     18 
     19## WRAPPERS 
     20 
     21MEX(epdf_mean) 
  • applications/bdmtoolbox/mex/estimator.cpp

    r723 r728  
    209209                if ( n_output<1 ) mexErrMsgTxt ( "Wrong number of output variables!" ); 
    210210                output[0] = mL->toCell(); 
     211                if (n_output>1) { 
     212                        UImxConfig UIc(mL->_setting_conf().getRoot()); 
     213                        output[1]=UIc.mxconfig; 
     214                } 
    211215        } 
    212216#endif