Error in 4.2
Posted: Mon Jun 06, 2011 3:55 pm
Hi,
The function dynare_resolve fails after simulation.
I've worked the trail to: dynare_resolve->resol->dr1->mjdgges which fails because options_.qz_criterium is empty. A simple
solves the problem.
BTW, this problem is caused by the line:
in stoch_simul.m
Thanks,
Gilles
The function dynare_resolve fails after simulation.
I've worked the trail to: dynare_resolve->resol->dr1->mjdgges which fails because options_.qz_criterium is empty. A simple
- Code: Select all
if isempty(options_.qz_criterium)
options_.qz_criterium = 1+1e-6;
end
solves the problem.
BTW, this problem is caused by the line:
- Code: Select all
options_ = options_old;
in stoch_simul.m
Thanks,
Gilles