River stats from US Geological Survey for Quinsigamond River at North Grafton, MA.
% time1253 and data1253 available for use
% for River height
%
% River flow rate
% time vector is: time1254
% data vector is: data1254
ax1 = subplot(2,1,1);
plot(time1253,data1253,'*-', 'Color', [1 0 0])
ylabel('feet')
title('River Height, Feet')
datetick
ax2 = subplot(2,1,2);
plot(time1254,data1254, '+-', 'Color', [0 0 1])
ylabel('ft^3/sec')
title('River Flow Rate, cubic feet per second')
datetick
linkaxes([ax1 ax2],'x')
data points
Created 22 Jan 2012 by Sam Mirsky
149 views (30 days)
This trend is associated in this plot (though may not be used.)
data points
Created 22 Jan 2012 by Sam Mirsky
131 views (30 days)
This trend is associated in this plot (though may not be used.)
0 comments