Overview
Comment: | Unified format of time responses. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
94c73ad0d86f19c25ae18c4895eaea28 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-18 12:03:06 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-18
| ||
12:03:49 | Initial revision check-in: 83fd3b2cd7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:03:06 | Unified format of time responses. check-in: 94c73ad0d8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:02:46 | Fixed bug when some matrices are empty. check-in: 7dbc0b1aab user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [5d5211360a] to [85a6ac0bcf].
︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | + + + | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.14 1996/08/16 14:52:24 peter ## Added two alternative view options - dview and pview. ## ## Revision 1.13 1996/08/16 08:24:31 peter ## Correctly chooses how to make a ps file using $REPTYPE. ## ## Revision 1.12 1996/08/15 16:47:47 peter ## DAE solution (experimental) included. ## ## Revision 1.11 1996/08/15 11:55:30 peter |
︙ | |||
123 124 125 126 127 128 129 | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | + + - + + + + + + + - + + + | # Classify the representation - needed for conversion route to postscript case $2 in abg ) REPTYPE='bg' ;; cbg ) REPTYPE='bg' ;; odes) REPTYPE='data' ;; |
︙ | |||
240 241 242 243 244 245 246 | 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | - + | $1_sum.tex: $1_abg.pl abg2sum_pl2tex $1; latex_tidy $1_sum.tex #Elementary system equations + definitions $1_ese.r: $1_cbg.m cbg2ese_m2r $1 $1_def.r: $1_ese.r |
︙ | |||
324 325 326 327 328 329 330 | 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | + + - - - - + + + + + + + + + + + + + + + + | $1_tf.tex: $1_def.r $1_tf.r $1_sympar.r $1_simp.r tf_r2tex $1; latex_tidy $1_tf.tex #Time responses $1_sr.m: $1_dm.m $1_numpar.m $1_args.m $1_def.m dm2sr_m $1 '$ARGS' $1_sro.m: $1_sr.m touch $1_sro.m |
︙ | |||
385 386 387 388 389 390 391 | 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | + - - - + + + + + + + + + + + + + + + | #Create PostScript version of dvi file $1_$2.ps: $1_$2.dvi echo Creating $1_$2.ps dvips -o $1_$2.ps $1_$2 endif #Default view ifeq ($REPTYPE,bg) |
︙ |
Modified mttroot/mtt/bin/trans/m/dm2sr.m from [3a20b68940] to [ef0adb9b22].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - - + + + + + + |
|
︙ | |||
37 38 39 40 41 42 43 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | - + + + - - - - + + + + + + + + + + + + | if M>N T = T'; N = M; end; one = eye(Nx); |
Modified mttroot/mtt/bin/trans/ode2odes_m from [75108a9087] to [1d1e1e88f4].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | - + + + + - - + + - + + - + + + + + + - - - - - + + + + + - - + + | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### |
Modified mttroot/mtt/bin/trans/sm2sr_m from [f93b47c81c] to [7599e65984].
︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + + + | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.8 1996/08/15 16:23:39 peter ## Uses T in place of t to avoid name clash within function. ## ## Revision 1.7 1996/08/15 11:54:32 peter ## Now has optional initial condition. ## ## Revision 1.6 1996/08/14 09:15:02 peter ## Now encapsulates the data into an m file ## Name changed ## |
︙ | |||
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | + + + | ## ## Revision 1.1 1996/08/11 09:45:46 peter ## Initial revision ## ############################################################### echo Creating $1_sr.m echo Creating $1_sro.m rm -f dm2sr_m.log rm -f $1_sr.m rm -f $1_sro.m if [ "$2" = "" ]; then PARAMS='T=[0:0.1:10];u0=ones(nu,1);x0=zeros(nx,1);' echo Using default parameter $PARAMS else PARAMS=$2; |
︙ | |||
76 77 78 79 80 81 82 | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | - + + + + + - + + | [n,m]=size(T); if m>n T=T'; end; [A,B,C,D,E] = $1_dm($1_numpar); |