- Timestamp:
- 07/09/10 14:24:54 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/bdm/estim/arx.h
r1121 r1131 211 211 //! \brief ARX moidel with parameters in LS form 212 212 class ARXls : public BMEF{ 213 public: 213 214 egw_ls<ldmat> est; 215 216 egw_ls<ldmat> alternative; 214 217 215 218 const egw_ls<ldmat>& posterior() {return est;}; 216 219 217 220 void bayes(const vec &dt, const vec &psi){ 221 ldmat &Pbeta = est.P; 222 ldmat &Palpha = alternative.P; 223 224 218 225 } 219 226 };