Overview
Comment: | Ready for change to using external inputs.... |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6784ffd287ec74d324c39eb9504e5627 |
User & Date: | gawthrop@users.sourceforge.net on 1999-12-02 01:09:14 |
Other Links: | branch diff | manifest | tags |
Context
1999-12-03
| ||
00:04:50 |
Version to eric. -stdin switch added check-in: d32fbc4a33 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-12-02
| ||
01:09:14 | Ready for change to using external inputs.... check-in: 6784ffd287 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
00:52:05 | Initial revision check-in: 91c0c80032 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/mtt_stime.m from [72e598c099] to [3cb31be700].
︙ | ︙ | |||
31 32 33 34 35 36 37 | for i=free args=sprintf("%i",i); for j=1:length(theta) args = sprintf("%s %g",args, theta(j)); endfor | > | > | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | for i=free args=sprintf("%i",i); for j=1:length(theta) args = sprintf("%s %g",args, theta(j)); endfor ## Run system and replace NaN by 1e30 -- easier to handle command = sprintf("./%s_ode2odes.out %s | sed \'s/NAN/1e30/g\' >mtt_data.dat\n", \ system_name, args); system(command); ## Retrieve data load -force mtt_data.dat y_theta = [y_theta mtt_data(:,3:2:1+ny)]; endfor ## System data |
︙ | ︙ |