
| T | The type of time. |
Definition at line 22 of file KalmanSmootherModel.hpp.
Public Member Functions | |
| virtual | ~KalmanSmootherModel ()=0 |
| Destructor. | |
| virtual indii::ml::aux::GaussianPdf | p_xtnm1_ytn (const indii::ml::aux::GaussianPdf &p_xtn_ytn, const T delta)=0 |
| Predict previous system state. | |
| virtual indii::ml::aux::GaussianPdf | p_xtnm1_ytnm1 (const indii::ml::aux::GaussianPdf &p_xtnm1_ytn, const indii::ml::aux::vector &ytnm1, const T delta)=0 |
| Refine prediction of previous system state using previous measurement. | |
| ~KalmanSmootherModel | ( | ) | [inline, pure virtual] |
| virtual indii::ml::aux::GaussianPdf p_xtnm1_ytn | ( | const indii::ml::aux::GaussianPdf & | p_xtn_ytn, | |
| const T | delta | |||
| ) | [pure virtual] |
Predict previous system state.
| p_xtn_ytn | ; distribution over states at the current time given present and future measurements. | |
| delta | ; time step. |
; predicted distribution over states at time
given future measurements. Implemented in LinearModel.
| virtual indii::ml::aux::GaussianPdf p_xtnm1_ytnm1 | ( | const indii::ml::aux::GaussianPdf & | p_xtnm1_ytn, | |
| const indii::ml::aux::vector & | ytnm1, | |||
| const T | delta | |||
| ) | [pure virtual] |
Refine prediction of previous system state using previous measurement.
| p_xtnm1_ytn | ; predicted distribution over states at time given the history of measurements. Typically obtained from prior call to p_xtnm1_ytn. | |
| ytnm1 | ; the measurement at time . | |
| delta | ; time step. |
; distribution over states at time
given the present and future measurements. Implemented in LinearModel.
1.5.3