function ep_qplot(ep,col) % EP_QPLOT - Plot up the HF LF combined data. % % Use as: ep_qplot(ep,col) % % Inputs: ep = eqpac mooring id (1 or 2) % col = Column of the data set to plot if ep == 1; load d:\brian\matlab\working\ep1hflf else load d:\brian\matlab\working\ep2hflf end d7 = specmean(d,7); d21 = specmean(d,21); y = dat(:,col); y7 = specmean(y,7); y21 = specmean(y,21); plot(d,y,'g') hold on plot(d7,y7,'b') plot(d21,y21,'r'); hold off nm = ep_specprr_ini; title(nm(col)) xlabel('Date') datetick('x',4)