-
Notifications
You must be signed in to change notification settings - Fork 0
/
plt_profile.m
41 lines (37 loc) · 1.16 KB
/
plt_profile.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
load DB2_May2005.mat
figure()
plot(phyeo, depth,'b*')
hold on
plot(chla, depth,'r+')
hold off
legend('small-sized phyeo','small-sized Chla')
xlabel('Phyeo/Chla concentration (\muM)','fontsize',16)
ylabel('Dpeth (m)','fontsize', 16)
set(gca,'XAxisLocation','top','YAxisLocation','left','ydir','reverse');
set(gca,'fontsize',16)
set(findall(gca, 'Type', 'Line'),'LineWidth',2);
print -depsc chl_phyeo_profile.eps
figure()
plot(Phyeo, depth,'b*')
hold on
plot(Chla, depth,'r+')
hold off
legend('large-sized Phyeo','large-sized Chla')
xlabel('Phyeo/Chla concentration (\muM)','fontsize',16)
ylabel('Dpeth (m)','fontsize', 16)
set(gca,'XAxisLocation','top','YAxisLocation','left','ydir','reverse');
set(gca,'fontsize',16)
set(findall(gca, 'Type', 'Line'),'LineWidth',2);
print -depsc Phyeo_Chla_profile.eps
figure()
plot(POC, depth,'b*')
hold on
plot(poc, depth,'r+')
hold off
legend('large-sized POC','small-sized POC')
xlabel('POC concentration (\muM)','fontsize',16)
ylabel('Dpeth (m)','fontsize', 16)
set(gca,'XAxisLocation','top','YAxisLocation','left','ydir','reverse');
set(gca,'fontsize',16)
set(findall(gca, 'Type', 'Line'),'LineWidth',2);
print -depsc POC_poc_profile.eps