Fixed typo.

time-shift
Stéphane Adjemian (Charybdis) 2017-06-17 08:42:38 +02:00
parent 119b5a62f2
commit e7bb0acae8
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ if nargin<6
DynareOutput.exo_simul = zeros(sample_size,number_of_shocks);
DynareOutput.exo_simul(:,positive_var_indx) = DynareOutput.bnlms.shocks;
if isfield(DynareModel,'exo_histval') && ~ isempty(DynareModel.exo_histval)
DynareOutput.exo_simul = [M_.exo_histval; DynareOutput.exo_simul];
DynareOutput.exo_simul = [DynareModel.exo_histval; DynareOutput.exo_simul];
else
DynareOutput.exo_simul = [zeros(1,number_of_shocks); DynareOutput.exo_simul];
end