Changeset 870 for library/doc
- Timestamp:
- 03/18/10 19:13:02 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/doc/tutorial/02userguide2.dox
r693 r870 52 52 A1.rv = y; 53 53 A1.rgr = RVtimes([y,y],[-3,-1]) ; 54 A1. options = 'logbounds,logll';54 A1.log_level = 'logbounds,logevidence'; 55 55 \endcode 56 56 This is the minimal configuration of an ARX estimator. Optional elements of bdm::ARX::from_setting() were set using their default values: 57 57 58 58 The first three fileds are self explanatory, they identify which data are predicted (field \c rv) and which are in regressor (field \c rgr). 59 The field \c optionsis a string of options passed to the object. In particular, class \c BM understand only options related to storing results:59 The field \c log_level is a string of options passed to the object. In particular, class \c BM understand only options related to storing results: 60 60 - logbounds - store also lower and upper bounds on estimates (obtained by calling BM::posterior().qbounds()), 61 - log ll- store also loglikelihood of each step of the Bayes rule.61 - logevidence - store also loglikelihood of each step of the Bayes rule. 62 62 These values are stored in given logger (\ref ug_loggers). By default, only mean values of the estimate are stored. 63 63 … … 129 129 A1.rv = y; 130 130 A1.rgr = RVtimes([y,u],[-3,-1]) ; 131 A1. options ='logbounds,logll';131 A1.log_level ='logbounds,logevidence'; 132 132 A1.frg = 0.9; 133 133 A1.name = 'A1'; … … 146 146 E.prior.class = 'eDirich'; % prior on non-linear part 147 147 E.prior.beta = [1 1]; % 148 E. options ='logbounds,logll';148 E.log_level ='logbounds,logevidence'; 149 149 E.name = 'MPF'; 150 150