Suppress plotting in forecast

I am not apple to suppress plotting in version 4 in the same fashion than in version 3.

"forecast (periods = 200) x; "

does not work. I get the error message
??? Attempted to access var_yf(:,2); index out of bounds because
size(var_yf)=[200,1].

Error in ==> simultxdet at 150
int_width(:,i) = fact*sqrt(var_yf(:,i))’;

Error in ==> forecast at 120
[yf,int_width] = simultxdet(y0,ex,oo_.exo_det_simul,…

Error in ==> BL_APADJ_4 at 1120
info = forecast(var_list_,‘simul’);

Error in ==> dynare at 102
evalin(‘base’,fname) ;

I have 156 variables, so I realy do not wish to plot them all every time I solve the model. What should I do?

Cheers,

Jukka

hi,

maybe you cant plot this variable because it has a unit root. Could u post ur mod-file plz?

Best

Hi,

This is a bug in Dynare, thanks for reporting this. It will be fixed in the next release of Dynare.

If you want to fix it on your Dynare installation, edit the file matlab/simultxdet.m, and, by the end of the file, replace:

  for i=1:endo_nbr
    int_width(:,i) = fact*sqrt(var_yf(:,i));
  end

by:

  for i=1:nvar
    int_width(:,i) = fact*sqrt(var_yf(:,i));
  end

Hi,

thanks for the reply. Your change almost did the trick. Now I’m apple to plot only one variable like I wanted, but at the same time I get forecasts only for one variable. I wish to collect the forecast from the stucture oo_.forecast.Mean for all the endogenous variables I have in the model and suppress the plotting.

I upload the model code I use for you to test.

Cheers,

JukkaBL_APADJ_4.mod (25 KB)

Hi,

For the moment the “forecast” has no option to suppress the graphics. So the trick is to add the “nograph” option to stoch_simul. It will look like:

stoch_simul(irf=0, order=1, nograph);
forecast(periods=200);

That should do what you want.

Also note that I have added the “nograph” option to “forecast” in the unstable version of Dynare. This should therefore become available in the upcoming Dynare 4.1 release.

Best