Skip to content
Snippets Groups Projects
Commit 48cce9a3 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Merge branch 'sim1_purely_backward' into 'master'

sim1_purely_backward.m: for purely static model, do not use past value for first iteration

See merge request Dynare/dynare!1862
parents abe8a05b f97c1386
Branches
No related tags found
No related merge requests found
......@@ -43,8 +43,13 @@ dynamicmodel_s = str2func('dynamic_backward_model_for_simulation');
info.status = true;
for it = M.maximum_lag + (1:options.periods)
y = endogenousvariables(:,it-1); % Values at previous period, also used as guess value for current period
ylag = y(iyb);
if M.maximum_lag==0 && it==1
y = endogenousvariables(:,it); % Values at previous period, also used as guess value for current period
ylag = [];
else
y = endogenousvariables(:,it-1); % Values at previous period, also used as guess value for current period
ylag = y(iyb);
end
if ismember(options.solve_algo, [12,14])
[tmp, check] = dynare_solve(dynamicmodel_s, y, options, M.isloggedlhs, M.isauxdiffloggedrhs, M.endo_names, M.lhs, ...
dynamicmodel, ylag, exogenousvariables, M.params, steadystate, it);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment