Hi,
I am trying to retrieve the following state-space representation from Dynare:
s_t = A*s_t-1 + B*epsilon_t
x_t = C*s_t
where s_t is a mx1 vector of states and x_t is a nx1 vector of controls. A is a mxm matrix, epsilon_t is wx1 and B is mxw. C is the policy funciton and is nxm.
However, to my knowledge, Dynare combines the two equations as one:
x_t = C*A*s_t-1 + C*B*epsilon_t
My question: How can I retrieve the coefficients of A, B, and C using Dynare (up to third-order)?
Thanks so much