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

forecast_graphs.m: fix wrong naming

Also removes eval
parent 7bf0395a
Branches
No related tags found
No related merge requests found
...@@ -76,7 +76,7 @@ for j= 1:nvar ...@@ -76,7 +76,7 @@ for j= 1:nvar
fprintf(fidTeX,' \n'); fprintf(fidTeX,' \n');
end end
n_fig =n_fig+1; n_fig =n_fig+1;
eval(['hh_fig=dyn_figure(options_.nodisplay,''Name'',''Forecasts (' int2str(n_fig) ')'');']); hh_fig=dyn_figure(options_.nodisplay,'Name',['Forecasts (' int2str(n_fig) ')']);
m = 1; m = 1;
end end
subplot(nr, nc, m); subplot(nr, nc, m);
...@@ -138,7 +138,7 @@ if isfield(oo_.forecast,'HPDinf_ME') ...@@ -138,7 +138,7 @@ if isfield(oo_.forecast,'HPDinf_ME')
fprintf(fidTeX,' \n'); fprintf(fidTeX,' \n');
end end
n_fig =n_fig+1; n_fig =n_fig+1;
eval(['hh_fig=dyn_figure(options_.nodisplay,''Name'',''Forecasts (' int2str(n_fig) ')'');']); hh_fig=dyn_figure(options_.nodisplay,'Name',['Forecasts including ME (' int2str(n_fig) ')']);
m = 1; m = 1;
end end
subplot(nr,nc,m); subplot(nr,nc,m);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment