Changeset 1086
- Timestamp:
- 06/11/10 14:39:57 (14 years ago)
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/bdmtoolbox/doc/local/000scenarios.dox
r1073 r1086 38 38 - List of <a href="bdm_doc/annotated_bdm_BM.html" > Bayesian Models</a> 39 39 - List of <a href="bdm_doc/annotated_bdm_Controllers.html" > Controllers</a> 40 - List of <a href="bdm_doc/annotated_bdm_MergerBase.html" > Mergers</a> 40 41 41 42 For details of their use, see tutorials: … … 43 44 - \ref userguide_sim 44 45 - \ref userguide_estim 46 - \ref userguide_merg 45 47 - \ref userguide_ctrl 46 48 -
applications/bdmtoolbox/doc/local/002mex_classes.dox
r1054 r1086 1 1 /*! 2 \page mex_bdm Use Case #3: combining Matlab classes and BDM classes2 \page bdt_mex_bdm Use Case #3: combining Matlab classes and BDM classes 3 3 4 4 The classes written in Matlab can be combined with standard BDM classes via corresponding C++ classes with equal names, i.e. mexBM.m is accepted by C++ class mexBM -
applications/bdmtoolbox/doc/local/mainpage.dox
r1050 r1086 48 48 The purpose of this use case is to allow seamless integration of pure Matlab algorithm into the routines of BDM. 49 49 50 See \ref bdt_mex_ classesfor details50 See \ref bdt_mex_bdm for details 51 51 52 52 */ -
library/bdm/stat/merger.h
r1085 r1086 260 260 261 261 \code 262 class = ' merger_base';262 class = 'MergerDiscrete'; 263 263 method = 'arithmetic' or 'geometric' or 'lognormal'; % name of the model used for merging 264 264 --- compulsory only for lognormal merging model --- … … 267 267 dbg_file = '...'; % name of the file to store debug informations 268 268 --- inherited fields --- 269 bdm:: epdf::from_setting269 bdm::MergerBase::from_setting 270 270 \endcode 271 271 */