Overview
| Comment: | Put _smx include at end of list (?????) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
180c14e83e755c3bbb46d3473e4bf60e |
| User & Date: | gawthrop@users.sourceforge.net on 1998-11-17 17:39:45.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-11-18
| ||
| 10:47:39 | Added transfer function rep check-in: 0e18cd851f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1998-11-17
| ||
| 17:39:45 | Put _smx include at end of list (?????) check-in: 180c14e83e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 17:26:11 | Put sign.p first check-in: ca467898ac user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_m2p
from [f75eb2bf79]
to [ecf4721684].
| ︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.20 1998/10/01 16:01:09 peterg ## Now does implicit integration with switches ## ## Revision 1.19 1998/09/29 15:37:18 peterg ## Declare mttINPUT ## ## Revision 1.18 1998/08/27 08:55:40 peterg | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.21 1998/11/17 17:26:11 peterg ## Put sign.p first ## ## Revision 1.20 1998/10/01 16:01:09 peterg ## Now does implicit integration with switches ## ## Revision 1.19 1998/09/29 15:37:18 peterg ## Declare mttINPUT ## ## Revision 1.18 1998/08/27 08:55:40 peterg |
| ︙ | ︙ | |||
239 240 241 242 243 244 245 |
for (k=1;k<i;k++) printf(" %s,\n",global[k])
printf("%s : REAL;\n", global[i])
printvar("x",Nx);
printvar("u",Nu);
printvar("y",Ny);
printvar("_t",Nt);
| | < > | 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 |
for (k=1;k<i;k++) printf(" %s,\n",global[k])
printf("%s : REAL;\n", global[i])
printvar("x",Nx);
printvar("u",Nu);
printvar("y",Ny);
printvar("_t",Nt);
printf("\n{%s sign.p}\n",inc)
printf("{%s mtt_euler.p}\n",inc)
printf("{%s mtt_implicit.p}\n",inc)
printf("{%s mtt_write.p}\n",inc)
printf("{%s zero_matrix.p}\n",inc)
printf("{%s zero_vector.p}\n",inc)
printf("{%s %s_simpar.p}\n",inc,sys)
printf("{%s %s_numpar.p}\n",inc,sys)
printf("{%s %s_state.p}\n",inc,sys)
printf("{%s %s_input.p}\n",inc,sys)
printf("{%s %s_ode.p}\n",inc,sys)
printf("{%s %s_odeo.p}\n",inc,sys)
printf("{%s %s_switch.p}\n\n",inc,sys)
printf("{%s %s_switcha.p}\n\n",inc,sys)
printf("\n{%s %s_smx.p}\n",inc,sys)
for (k=1;k<=j;k++) printf("%s\n", comment[k])
printf("\n")
printf("\nBEGIN{%s}\n", Sys_rep)
}
else{
for (k=1;k<=j;k++) printf("%s\n", comment[k])
|
| ︙ | ︙ |