Overview
Comment: | No change |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f0a8d6e67c3e3940beaca87f743ea256 |
User & Date: | gawthrop@users.sourceforge.net on 2000-05-11 13:43:14 |
Other Links: | branch diff | manifest | tags |
Context
2000-05-11
| ||
16:09:24 | Put in simpar.first parameter check-in: 32494f30de user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:43:14 | No change check-in: f0a8d6e67c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:16:46 | New version of simpar - with record check-in: cde02c8ca7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/octave_ode2odes from [bca8071542] to [678d5f3923].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 | # Copyright (c) P.J.Gawthrop 1999 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### echo Creating $1_odes.dat2 | > > > | > > > > > | 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 | # Copyright (c) P.J.Gawthrop 1999 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1999/03/15 23:27:16 peterg ## Initial revision ## ############################################################### echo Creating $1_odes.dat2 $MATRIX <<EOF >octave_ode2odes.log 2>mtt_error.txt global MTT_data $1_ode2odes; if is_complex(MTT_data) mtt_error("octave_ode2odes: Simulated data is complex - something is wrong!"); MTT_data = real(MTT_data); endif; save -ascii $1_odes.dat2 MTT_data EOF mtt_error mtt_error.txt |