Changeset 870 for library/doc

Show
Ignore:
Timestamp:
03/18/10 19:13:02 (14 years ago)
Author:
mido
Message:

LOG_LEVEL final cut (or rather semifinal? I hope to improve work with ids soon)
and also it rests to adapt applications, work is in progress

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/doc/tutorial/02userguide2.dox

    r693 r870  
    5252A1.rv = y; 
    5353A1.rgr = RVtimes([y,y],[-3,-1]) ; 
    54 A1.options = 'logbounds,logll'; 
     54A1.log_level = 'logbounds,logevidence'; 
    5555\endcode  
    5656This is the minimal configuration of an ARX estimator. Optional elements of bdm::ARX::from_setting() were set using their default values: 
    5757 
    5858The 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 options is a string of options passed to the object. In particular, class \c BM understand only options related to storing results: 
     59The 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: 
    6060 - logbounds - store also lower and upper bounds on estimates (obtained by calling BM::posterior().qbounds()), 
    61  - logll - store also loglikelihood of each step of the Bayes rule. 
     61 - logevidence - store also loglikelihood of each step of the Bayes rule. 
    6262These values are stored in given logger (\ref ug_loggers). By default, only mean values of the estimate are stored. 
    6363 
     
    129129A1.rv = y; 
    130130A1.rgr = RVtimes([y,u],[-3,-1]) ;  
    131 A1.options ='logbounds,logll'; 
     131A1.log_level ='logbounds,logevidence'; 
    132132A1.frg = 0.9; 
    133133A1.name = 'A1'; 
     
    146146E.prior.class = 'eDirich';         % prior on non-linear part 
    147147E.prior.beta  = [1 1]; %  
    148 E.options ='logbounds,logll'; 
     148E.log_level ='logbounds,logevidence'; 
    149149E.name = 'MPF'; 
    150150