my result shows that function or variable ‘****’ can’t be identified,how could i solve it?
Without the file and the exact message it is impossible to tell.
simulation.mod (6.7 KB)
thanks a lot,dear professor!
- You have a
tau
that must beTAU
. - You did not set all variables. For example, you should have
EP=EPs
- Equations like
G(+1)=(1-rhog)*Gs+rhog*G+sdg;
are not valid in Dynare. The equation must typically be
G=(1-rhog)*Gs+rhog*G(-1)+sdg;
unless you have a weird timing in mind.
Many thanks Prof. Pfeifer!The problem is solved.