1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| subplot(2,3,1);
plot(STA2(:,17),'.-k','Linewidth',2)
set(gca,'xtick',[1:24:(length(STA2)+24)],'xticklabel',[1997:2009])
title('Total Nitrogen - surface (raw data)','FontName','Times New Roman','FontSize', 18)
set(gca,'FontName','Times New Roman');set(gca, 'FontSize', 18)
h=gca;
rotateticklabel(h,30);
subplot(2,3,4)
plot(STA3((m+1):(end-m),14),'.-k','Linewidth',2)
set(gca,'xtick',[0:24:(length(STA3)+1)],'xticklabel',[1997:2009]);xlim([1 (length(STA3))]);
title('Total Nitrogen - surface (smoothed data)','FontName','Times New Roman','FontSize', 18)
set(gca,'FontName','Times New Roman');set(gca, 'FontSize', 18)
h1=gca;
rotateticklabel(h1,30); |
Partager