Overview
Comment:Removed debugging lines
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 6f09b920163047cef6536f9a29fe7c768d872654c758e8cd99afc00ade50b5d6
User & Date: gawthrop@users.sourceforge.net on 1999-09-02 00:59:55
Other Links: branch diff | manifest | tags
Context
1999-09-02
03:05:56
r_d --> dr + added to alias list check-in: 5eaf2139fb user: gawthrop@users.sourceforge.net tags: origin/master, trunk
00:59:55
Removed debugging lines check-in: 6f09b92016 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
1999-09-01
23:54:18
Added rcs header check-in: a430738b20 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/bin/trans/m/mtt_simulate.m from [ff75a48dbe] to [cbe0b154db].

12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
   for i=1:length(theta)
     args="";
     for j=1:length(theta)
       i_sensitivity=(j==i);
       args = sprintf("%s%i %g ",args, i_sensitivity, theta(j));
     endfor

     args
     command = sprintf("./%s_ode2odes.out %s > mtt_data.dat\n", system_name, args)
     system(command);

     ## Retrieve data
     load -force mtt_data.dat
     t = mtt_data(:,1);
     y = mtt_data(:,2);
     y_theta = [y_theta mtt_data(:,3)];







<
|







12
13
14
15
16
17
18

19
20
21
22
23
24
25
26
   for i=1:length(theta)
     args="";
     for j=1:length(theta)
       i_sensitivity=(j==i);
       args = sprintf("%s%i %g ",args, i_sensitivity, theta(j));
     endfor


     command = sprintf("./%s_ode2odes.out %s > mtt_data.dat\n", system_name, args);
     system(command);

     ## Retrieve data
     load -force mtt_data.dat
     t = mtt_data(:,1);
     y = mtt_data(:,2);
     y_theta = [y_theta mtt_data(:,3)];


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]