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
|
echo Creating $outfile
make_m() {
mtt_header ${sys} ssim m > ${outfile}
cat >> ${outfile} <<EOF
## Pass input as a global
global MTT_input MTT_input_index MTT_input_last
[nx2,ny2] = ${sys}_def;
ny = ny2/2;
y_par = [];
MTT_input = u;
[MTT_input_last,m] = size(u);
if nargin<5 # No index given
MTT_input_index = 0;
[mtt_data] = ${sys}_ode2odes(x0,par,simpar);
y = mtt_data(:,2:2:1+2*ny);
ypar = [];
else # Compute sensitivities as well
for i=index
MTT_input_index = 0;
p = par; # Reset parameters
p(i) = 1; # Set sensitivity index to 1
[mtt_data] = ${sys}_ode2odes(x0,p,simpar);
if (i==index(1))
y = mtt_data(:,2:2:1+2*ny);
endif
y_par = [y_par, mtt_data(:,3:2:2+2*ny)];
endfor
endif
endfunction
EOF
}
|
>
>
>
>
>
>
>
<
|
>
|
|
>
|
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
|
echo Creating $outfile
make_m() {
mtt_header ${sys} ssim m > ${outfile}
cat >> ${outfile} <<EOF
## Pass input as a global
global MTT_input MTT_input_index MTT_input_last
if nargin>4
[n,m] = size(index);
if (n>m) # Make sure its a row vector
index = index';
endif
endif
[nx2,ny2] = ${sys}_def;
y_par = [];
MTT_input = u;
[MTT_input_last,m] = size(u);
if nargin<5 # No index given
MTT_input_index = 0;
[mtt_data] = ${sys}_ode2odes(x0,par,simpar);
y = mtt_data(:,2:2:1+ny2);
x = mtt_data(:,3+ny2:2:2+ny2+nx2);
ypar = [];
else # Compute sensitivities as well
for i=index
MTT_input_index = 0;
p = par; # Reset parameters
p(i) = 1; # Set sensitivity index to 1
[mtt_data] = ${sys}_ode2odes(x0,p,simpar);
if (i==index(1))
y = mtt_data(:,2:2:1+ny2);
endif
y_par = [y_par, mtt_data(:,3:2:2+ny2)];
x = [];
endfor
endif
endfunction
EOF
}
|