Differences From Artifact [61521dfc81]:
- Executable file mttroot/mtt/bin/trans/dae2daes_m — part of check-in [31f05bb19d] at 1998-05-14 08:14:28 on branch origin/master — Now reads in data from the simpar file. (user: gawthrop@users.sourceforge.net, size: 1960) [annotate] [blame] [check-ins using]
To Artifact [2d36d30236]:
- Executable file mtt/bin/trans/dae2daes_m — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 2050) [annotate] [blame] [check-ins using] [more...]
- Executable file
mttroot/mtt/bin/trans/dae2daes_m
— part of check-in
[34d74df313]
at
1998-06-01 15:45:05
on branch origin/master
— Fixed bug in multi outputs:
y = $1_daeo(x(i,:),tt)'; ---> y = $1_daeo(x(i,:),tt); (user: gawthrop@users.sourceforge.net, size: 2050) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.5 1998/05/13 16:42:03 peterg ## Fixed various bugs etc. ## # Revision 1.4 1996/08/24 14:27:59 peter # Global parameters. # Error handling. # | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.6 1998/05/14 08:14:28 peterg ## Now reads in data from the simpar file. ## ## Revision 1.5 1998/05/13 16:42:03 peterg ## Fixed various bugs etc. ## # Revision 1.4 1996/08/24 14:27:59 peter # Global parameters. # Error handling. # |
︙ | ︙ | |||
89 90 91 92 93 94 95 | end; if ny>0 i=0; Y = []; for tt=T' i=i+1; | | | 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | end; if ny>0 i=0; Y = []; for tt=T' i=i+1; y = $1_daeo(x(i,:),tt); Y = [Y; y']; end; write_matrix([T,Y], '$1_daeso'); end; EOF |
︙ | ︙ |