-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_enzstat_script.m
More file actions
66 lines (37 loc) · 926 Bytes
/
model_enzstat_script.m
File metadata and controls
66 lines (37 loc) · 926 Bytes
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
clear all;
close all;
name='EnzStat';
create(name);
addpath(genpath(['models/',name]))
y0(1)=0;
y0(2)=120;
y0(3)=0;
y0(4)=0;
y0(5)=10;
y0(6)=10;
y0(7)=10;
y0(8)=10;
y0(9)=0;
y0(10)=0;
y0(11)=0;
y0(12)=0;
y0(13)=0;
y0(14)=0;
plottraj(name,10,1,15,y0,[1 4])
F=Fisher(name,10,0.1,3,y0,[1 4],10,'All','T');
FIM_TS=F{1};
FIM_TP=F{2};
FIM_DT=F{3};
plotdFMAll(name, 1,1,FIM_TS,FIM_DT); % First element plotted (TS) polted as heatmap, second (DT) as contourplot
i=1;
j=3;
plotdFMcc(name, 1,1,FIM_TS,FIM_DT,i,j,'TS','DT');
plotdFMAllcc(name, 1,1,FIM_TS,FIM_DT,'TS','DT')
% sensitivity coeffitients
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
SC1=sensitivities(F{1});
sensitivitiesAll(name, F);
diaginv(name,F);
decomp(name,F);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%