I am estimating a state-space model of output gap for the US. I'm reproducing the results from a BIS working paper (attached).
Here is a simple model to help clarify my question :
Code: Select all
gdpln_us = ystar + c(1)*(gdpln_us(-1) - ystarlag) + 1600*e0
@state ystar = 2*ystar(-1) - ystarlag(-1) + e0
@state ystarlag = ystar(-1)
@ename e0
@evar var(e0) = exp(c(20))Thanks!
Mara
