Overview
Comment: | Included new sparse update routines |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3e3969cde73b4c2a79ded57731fa142d |
User & Date: | gawthrop@users.sourceforge.net on 1998-08-15 13:46:01 |
Other Links: | branch diff | manifest | tags |
Context
1998-08-15
| ||
13:46:59 | New versions of integration routines check-in: a4b1238e47 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:46:01 | Included new sparse update routines check-in: 3e3969cde7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:45:28 |
Added new integration methods in Pascal/c version Revised the various translations appropriately check-in: 6b0f7757cd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_m2p from [fdd2d8ef52] to [2d421e6110].
︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 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.14 1998/08/12 15:21:12 peterg ## Added type definition for the SVD procedures ## ## Revision 1.13 1998/08/11 09:32:07 peterg ## Added comments at procedure begin and end. ## ## Revision 1.12 1998/07/30 11:30:42 peterg ## Included zeros function ## ## Revision 1.11 1998/07/29 14:18:34 peterg |
︙ | |||
96 97 98 99 100 101 102 | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | + + + + + + - - + + + + - - - - - + + + + + + + - + - - + + + | echo "PROCEDURE $Sys_rep(VAR mtty : OutputVector;" echo " mttx : StateVector;" echo " mttu : InputVector;" echo " mttt : REAL);" ;; smx) echo "PROCEDURE $Sys_rep(VAR mtta : StateMatrix;" echo " VAR mttx : StateVector;" echo " VAR mttu : InputVector;" echo " mttdt : REAL);" ;; smxx|smxtx) echo "PROCEDURE $Sys_rep(VAR mttax : StateVector;" |
︙ | |||
141 142 143 144 145 146 147 | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | - + - + | {*** System $Sys, rep $rep, language Pascal, file $Filename ***} {*** Translated by MTT from $Sys_rep.m on `date` ***} EOF #Regexps |
︙ | |||
206 207 208 209 210 211 212 | 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | - + + + + + + + + + + + + + + + + - + - + + - - + + | if (rep=="ode2odes"){ printf("VAR "); for (k=1;k<i;k++) printf("%s,",global[k]) printf("%s : REAL;\n", global[i]) printvar("x",Nx); printvar("u",Nu); printvar("y",Ny); |
︙ | |||
275 276 277 278 279 280 281 | 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | - + | printf("IMPLICIT = 3;\n") } else if (rep=="ode2odes") printf("END{%s}.\n", Sys_rep) else printf("END{%s};\n", Sys_rep) |