Fix display of ML forecasts with Matlab 2014b graphics interface

Explicit colours need to be specified
time-shift
Johannes Pfeifer 2015-05-11 19:17:01 +02:00
parent 8bc946c148
commit 8385e813ce
1 changed files with 3 additions and 3 deletions

View File

@ -69,11 +69,11 @@ for j= 1:nvar
% $$$ hold on
% $$$ obs = 10;
% $$$ end
plot([NaN(obs,1); yf.(vn)]);
plot([NaN(obs,1); yf.(vn)],'b-');
hold on
plot([NaN(obs,1); hpdinf.(vn)]);
plot([NaN(obs,1); hpdinf.(vn)],'b-');
hold on
plot([NaN(obs,1); hpdsup.(vn)]);
plot([NaN(obs,1); hpdsup.(vn)],'b-');
title(vn,'Interpreter','none');
xlim([1 obs+length(hpdsup.(vn))])
hold off