Changeset 1036

Show
Ignore:
Timestamp:
06/03/10 08:38:21 (14 years ago)
Author:
dedecius
Message:

slightly improved documentation of ARXpartialforg

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/estim/arx.h

    r1035 r1036  
    234234Implements partial forgetting when <tt>bayes(const vec &yt, const vec &cond=empty_vec)</tt> is called, where \c cond is a vector <em>(regressor', forg.factor')</em>. 
    235235 
    236 Note, that the weights have the same order as hypotheses, following this scheme: 
     236Note, that the weights have the same order as hypotheses in partial forgetting, and follow this scheme: 
    237237\li 0 means that the parameter doesn't change, 
    238238\li 1 means that the parameter varies. 
    239239 
    240240The combinations of parameters are described binary: 
    241 \f[ 
    242   0, 0, 0\ldots \\ 
    243   1, 0, 0\ldots \\ 
    244   0, 1, 0\ldots \\ 
    245   1, 1, 0\ldots \\ 
    246   \ldots 
    247 \f] 
    248 where each n-th column has altering 1's and 0's in n-tuples, n = 0,...,number of params. Hence, the first forg. factor relates to the situation when no parameter changes, the second one when the first parameter changes etc. 
     241\f{bmatrix}[ 
     242  0 & 0 & 0 & \ldots \\ 
     243  1 & 0 & 0 & \ldots \\ 
     244  0 & 1 & 0 & \ldots \\ 
     245  1 & 1 & 0 & \ldots \\ 
     246  \vdots & \vdots & \vdots & \vdots  
     247\f{bmatrix}] 
     248Notice, that each n-th column has altering n-tuples of 1's and 0's, n = 0,...,number of params. Hence, the first forg. factor relates to the situation when no parameter changes, the second one when the first parameter changes etc. 
    249249 
    250250See ARX class for more information about ARX.