Overview
| Comment: | Now generates x vector correctly |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
7728816dd1a64668faca0ecf619f4e38 |
| User & Date: | gawthrop@users.sourceforge.net on 2001-06-06 07:53:07.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2001-06-06
| ||
| 07:54:38 | Further fixes to make nonlinear PPP work ... check-in: 2a772279a1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 07:53:07 | Now generates x vector correctly check-in: 7728816dd1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2001-06-04
| ||
| 09:05:46 | Addded to CVS check-in: d88f9fb0e4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/make_ssim
from [3ba8b84f9a]
to [8d96ecb705].
| ︙ | ︙ | |||
40 41 42 43 44 45 46 |
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)];
| | | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
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
endfunction
EOF
}
|
| ︙ | ︙ |