forked from aleung15/AMPKmTOR2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplotfigure6.m
118 lines (111 loc) · 1.99 KB
/
plotfigure6.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
getplotid
figure(6)
%% panel 1
subplot(3,3,1)
hold on
plot(t,y(:,AMP)./y(:,ATP))
xlabel('Time [s]')
ylabel('Concentration Ratio')
title('AMP/ATP Ratio')
plotformat
xlim([-50,60])
xline(0,'-',{'Glutamate Stimulus'},'LabelHorizontalAlignment' , {'left'})
xline(5,'-',{'End'},'LabelHorizontalAlignment' , {'right'})
xticklabels('auto')
yticklabels('auto')
%
% %% panel 2
% subplot(3,3,1)
% hold on
% plot(t,y(:,Ca_C))
% xlabel('Time [s]')
% ylabel('Concentration [\muM]')
% title('Cytosolic Calcium')
% plotformat
% xticklabels('auto')
% yticklabels('auto')
% xlim([-50,60])
% xline(0,'-',{'Glutamate Stimulus'},'LabelHorizontalAlignment' , {'left'})
% xline(5,'-',{'Stimulus End'},'LabelHorizontalAlignment' , {'right'})
%% panel 3
subplot(3,3,2)
hold on
plot(t,y(:,pAMPK))
xlabel('Time [s]')
ylabel('Concentration [\muM]')
title('pAMPK')
plotformat
xlim([-50,200])
xticklabels('auto')
yticklabels('auto')
%% panel 4
subplot(3,3,3)
hold on
plot(t,y(:,pmTORC1))
xlabel('Time [s]')
ylabel('Concentration [\muM]')
title('pmTORC1')
xlim([-50,200])
plotformat
xticklabels('auto')
yticklabels('auto')
%% panel 5
subplot(3,3,4)
hold on
plot(t,y(:,pmTORC2))
xlabel('Time [s]')
ylabel('Concentration [\muM]')
title('pmTORC2')
xlim([-50,200])
plotformat
xticklabels('auto')
yticklabels('auto')
%% panel 6
subplot(3,3,5)
hold on
plot(t,y(:,pULK1))
xlabel('Time [s]')
ylabel('Concentration [\muM]')
title('pULK1')
xlim([-50,200])
plotformat
xticklabels('auto')
yticklabels('auto')
% %% panel 7
% subplot(3,3,7)
% hold on
% plot(t,y(:,))
% xlabel('Time [s]')
% ylabel('Concentration [\muM]')
% title('')
% plotformat
% xticklabels('auto')
%yticklabels('auto')
%
%
%
%
% %% panel 8
% subplot(3,3,8)
% hold on
% plot(t,y(:,))
% xlabel('Time [s]')
% ylabel('Concentration [\muM]')
% title('')
% plotformat
% xticklabels('auto')
%yticklabels('auto')
%
%
% %% panel 9
% subplot(3,3,9)
% hold on
% plot(t,y(:,))
% xlabel('Time [s]')
% ylabel('Concentration [\muM]')
% title('')
% plotformat
% xticklabels('auto')
%yticklabels('auto')
%
%