Overview
Comment: | Put in some more "IF MTTNx>0 THEN" to avoid error messages when no states. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a2b1569fe09f122176e81468c2351c70 |
User & Date: | gawthrop@users.sourceforge.net on 1998-11-18 10:53:38 |
Other Links: | branch diff | manifest | tags |
Context
1998-11-18
| ||
11:29:43 | Initial revision check-in: cc4607c407 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:53:38 |
Put in some more "IF MTTNx>0 THEN" to avoid error messages when no states. check-in: a2b1569fe0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:47:39 | Added transfer function rep check-in: 0e18cd851f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/dae2cse_r from [53df088d8e] to [5ebe10ae2a].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop 1991, 1992, 1994. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.7 1998/10/05 10:46:15 peterg ## Commented out redundant MTTY := MTTY + MTTEyx*MTTEdX; ## ## Revision 1.6 1998/07/19 12:44:35 peterg ## Set MTTYz := 0 if the array is empty - avoids irritating error ## message. ## | > > > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Copyright (c) P.J.Gawthrop 1991, 1992, 1994. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.8 1998/11/10 08:54:34 peterg ## Put in "IF MTTNx>0 THEN" to prevent probs when Nx=0 ## -- still a couple of apparent error messages - but answers now ## correct ## ## Revision 1.7 1998/10/05 10:46:15 peterg ## Commented out redundant MTTY := MTTY + MTTEyx*MTTEdX; ## ## Revision 1.6 1998/07/19 12:44:35 peterg ## Set MTTYz := 0 if the array is empty - avoids irritating error ## message. ## |
︙ | ︙ | |||
236 237 238 239 240 241 242 | %%Create the _cse.r file OUT "$1_cse.r"; IF MTTNx>0 THEN BEGIN write "matrix MTTEdX(", MTTNx, ",1)"; END; | > | > | > > | 241 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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | %%Create the _cse.r file OUT "$1_cse.r"; IF MTTNx>0 THEN BEGIN write "matrix MTTEdX(", MTTNx, ",1)"; END; IF MTTNx>0 THEN MTTEdX := MTTEdX; IF MTTNy>0 THEN BEGIN write "matrix MTTY(", MTTNy, ",1)"; END; MTTY := MTTY; IF MTTNu>0 THEN BEGIN write "matrix MTTU(", MTTNu, ",1)"; write "matrix MTTdU(", MTTNu, ",1)"; END; MTTU := MTTU; IF MTTNx>0 THEN BEGIN write "matrix MTTE(", MTTNx, ",", MTTNx, ")"; END; IF MTTNx>0 THEN MTTE := MTTE; IF MTTNz>0 THEN BEGIN IF MTTNx>0 THEN IF MTTNy>0 THEN BEGIN write "matrix MTTEyx(", MTTNy, ",", MTTNx, ")"; END; IF MTTNx>0 THEN MTTEyx := MTTEyx; %%%%% MTTdU := MTTdU; END; IF MTTNyz>0 THEN BEGIN write "matrix MTTYz(", MTTNyz, ",1)"; |
︙ | ︙ |