filled SmoothedShocks field when

mode_compute=0 and and mode_file=0; 

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1867 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
ratto 2008-06-12 10:10:50 +00:00
parent b45d5ac3e0
commit 7c807afd65
1 changed files with 3 additions and 0 deletions

View File

@ -284,6 +284,9 @@ if options_.mode_compute == 0 & length(options_.mode_file) == 0
eval(['oo_.SmoothedVariables.' deblank(M_.endo_names(dr.order_var(i),:)) ' = atT(i,:)'';']);
eval(['oo_.FilteredVariables.' deblank(M_.endo_names(dr.order_var(i),:)) ' = filtered_state_vector(i,:)'';']);
end
for i=1:M_.exo_nbr
eval(['oo_.SmoothedShocks.' deblank(M_.exo_names(i,:)) ' = innov(i,:)'';']);
end
end
return;
end