Skip to content
Snippets Groups Projects
Commit b484b629 authored by Johannes Pfeifer's avatar Johannes Pfeifer
Browse files

forcst.m: remove unused input

parent b790dbb0
No related branches found
No related tags found
No related merge requests found
Pipeline #10888 passed
...@@ -162,9 +162,9 @@ end ...@@ -162,9 +162,9 @@ end
if M_.exo_det_nbr == 0 if M_.exo_det_nbr == 0
if isequal(M_.H,0) if isequal(M_.H,0)
[yf,int_width] = forcst(oo_.dr,y0,horizon,var_list,M_,oo_,options_); [yf,int_width] = forcst(oo_.dr,y0,horizon,var_list,M_,options_);
else else
[yf,int_width,int_width_ME] = forcst(oo_.dr,y0,horizon,var_list,M_,oo_,options_); [yf,int_width,int_width_ME] = forcst(oo_.dr,y0,horizon,var_list,M_,options_);
end end
else else
exo_det_length = size(oo_.exo_det_simul,1)-M_.maximum_lag; exo_det_length = size(oo_.exo_det_simul,1)-M_.maximum_lag;
......
function [yf,int_width,int_width_ME]=forcst(dr,y0,horizon,var_list,M_,oo_,options_) function [yf,int_width,int_width_ME]=forcst(dr,y0,horizon,var_list,M_,options_)
% function [yf,int_width,int_width_ME]=forecst(dr,y0,horizon,var_list,M_,oo_,options_) % function [yf,int_width,int_width_ME]=forecst(dr,y0,horizon,var_list,M_,options_)
% computes mean forecast for a given value of the parameters % computes mean forecast for a given value of the parameters
% computes also confidence band for the forecast % computes also confidence band for the forecast
% %
...@@ -10,7 +10,6 @@ function [yf,int_width,int_width_ME]=forcst(dr,y0,horizon,var_list,M_,oo_,option ...@@ -10,7 +10,6 @@ function [yf,int_width,int_width_ME]=forcst(dr,y0,horizon,var_list,M_,oo_,option
% var_list: list of variables (character matrix) % var_list: list of variables (character matrix)
% M_: Dynare model structure % M_: Dynare model structure
% options_: Dynare options structure % options_: Dynare options structure
% oo_: Dynare results structure
% OUTPUTS: % OUTPUTS:
% yf: mean forecast % yf: mean forecast
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment