kalman_filtering {viking} | R Documentation |
Kalman Filtering
Description
Compute the filtered estimation of the parameters theta
and P
.
Usage
kalman_filtering(X, y, theta1, P1, Q = 0, sig = 1)
Arguments
X |
the explanatory variables |
y |
the time series |
theta1 |
initial |
P1 |
initial |
Q |
(optional, default |
sig |
(optional, default |
Value
a list containing theta_arr
and P_arr
, the filtered estimation of
the parameters theta
and P
.
[Package viking version 1.0.2 Index]