#!/bin/sh
## Makes the sensitivity simulation
## Copyright (C) 2001 by Peter J. Gawthrop
sys=$1
lang=$2
outfile=${sys}_ssim.${lang}
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 = mtt_data(:,3+ny2:2+ny2+nx2);
endfor
endif
if nargout>3
## Create time vector
[N,M] = size(y);
t = mtt_data(:,1);
endif;
endfunction
EOF
}
case ${lang} in
m)
make_m
;;
*)
echo Language ${lang} not supported - sorry
esac