Fix make_y_.m for purely forward/backward models.

This commit is linked to 052faa2f93 and issue #613.
time-shift
Sébastien Villemot 2014-02-17 17:51:57 +01:00
parent 2662c2c3d4
commit 86dd4a5612
1 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ function make_y_()
% none
%
% Copyright (C) 1996-2012 Dynare Team
% Copyright (C) 1996-2014 Dynare Team
%
% This file is part of Dynare.
%
@ -43,14 +43,14 @@ end
if isempty(M_.endo_histval)
if isempty(ys0_)
oo_.endo_simul = [oo_.steady_state*ones(1,options_.periods+2)];
oo_.endo_simul = [oo_.steady_state*ones(1,M_.maximum_endo_lag+options_.periods+M_.maximum_endo_lead)];
else
oo_.endo_simul = [ys0_ oo_.steady_state*ones(1,options_.periods+1)];
oo_.endo_simul = [ys0_*ones(1,M_.maximum_endo_lag) oo_.steady_state*ones(1,options_.periods+M_.maximum_endo_lead)];
end
else
if ~isempty(ys0_)
error('histval and endval cannot be used simultaneously')
end
oo_.endo_simul = [M_.endo_histval ...
oo_.steady_state*ones(1,options_.periods+1)];
oo_.steady_state*ones(1,options_.periods+M_.maximum_endo_lead)];
end