Page 1 of 1

Finding Steady State

PostPosted: Sun Aug 24, 2014 2:57 am
by pbrr25
Hi,
I have written a separate matlab program for calculating the steady states. Steady states of the different variables of my model, thus obtained , are fed as initvals in the dynare program. However, dynare cannot find steady states, if I specify these initial values, that were obtained from my matlab file. Cant understand why. Any suggestions will greatly help.

Re: Finding Steady State

PostPosted: Tue Aug 26, 2014 4:54 am
by jpfeifer
Use
Code: Select all
resid(1);
to see the residuals after feeding in your initial values. The equations with residuals are the ones that you potentially entered incorrectly. If the equations are correct, your computations for the steady state are wrong.

Re: Finding Steady State

PostPosted: Sat Oct 11, 2014 5:38 pm
by pbrr25
Thanks. I will check this.