t1 = time1328;
d1 = data1328;
t2 = time1155;
d2 = data1155;
tn = unique([t1; t2]);
tn(tn < max(t1(1),t2(1))) = [];
tn(tn > min(t1(end),t2(end))) = [];
d1n = interp1(t1,d1,tn);
d2n = interp1(t2,d2,tn);
plot(tn,d2n,'r');
hold on
plot(tn,d1n,'b');
fill([tn; flipud(tn)],[d1n; flipud(d2n)], ...
0.9*[1 1 1],'EdgeColor','none');
hold off
ylim([0 100])
datetick
title('Daily High and Low Temperatures in Anchorage, AK')
ylabel('temp (deg. F)')
data points
Created 19 Oct 2011 by Ned Gulley
244 views (30 days)
This trend is associated in this plot (though may not be used.)
data points
Created 01 Feb 2012 by Ned Gulley
108 views (30 days)
This trend is associated in this plot (though may not be used.)
0 comments