KalmanFilter
scalation.modeling.forecasting_old.KalmanFilter
The KalmanFilter
class is used to fit state-space models. x_t = F x_t-1 + G u_t + w_t (State Equation) z_t = H x_t + v_t (Observation/Measurement Equation)
Value parameters
- ff
-
the state transition matrix (F)
- gg
-
the optional control-input matrix (G)
- hh
-
the observation matrix (H)
-
the process noise covariance matrix (Q)
- rr
-
the observation noise covariance matrix (R)
- u
-
the optional control vector
- x0
-
the initial state vector
Attributes
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
Members list
In this article