A list with the following components
model.residualsThe smoothed model residuals y(t)-E(y(t)|y(1:T),Theta), where Theta is the set of model parameters. Sometimes called the smoothations. This is different than the Kalman filter innovations which are y(t)-E(y(t)|y(1:t-1),Theta).
state.residualsThe smoothed stated residuals E(x(t)|y(1:T))-E(x(t)|E(x(t-1)|y(1:T))).
residualsThe model residuals as a (n+m) x TT matrix with model.residuals
on top and model.residuals
below. model.residuals
is hat(eta_t) on page 112 of Harvey, Koopman and Penzer (1998).
var.residualsThe variance of the model residuals as a (n+m) x (n+m) x TT matrix. This is var(hat(model.residuals
)).
std.residualsThe standardized model residuals as a (n+m) x TT matrix. This is residuals
divided by the square root of var.residuals
--- although the code is using the matrix equivalent of that equation.