Overview
Comment: | Now does ssm.m |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
27f7935f4a4c349728ba341502e5d3c2 |
User & Date: | gawthrop@users.sourceforge.net on 1999-11-23 00:59:14 |
Other Links: | branch diff | manifest | tags |
Context
1999-11-24
| ||
22:17:26 | Updated to correspond to Reza's beam check-in: 75546e33a9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-11-23
| ||
00:59:14 | Now does ssm.m check-in: 27f7935f4a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-11-22
| ||
23:49:50 | Writes out the new MTTNx and MTTNy check-in: 48cce03818 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_r2m from [8864749d74] to [438b64a1da].
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996, 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.11 1999/11/01 21:20:14 peterg ## Removed the E matrix from the cse file. ## ## Revision 1.10 1999/10/27 07:38:30 peterg ## Now does cse version -- but not needed now exept for Euler integration ## ## Revision 1.9 1999/10/26 23:47:58 peterg | > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996, 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.12 1999/11/15 22:57:20 peterg ## Removed a debugging line ## ## Revision 1.11 1999/11/01 21:20:14 peterg ## Removed the E matrix from the cse file. ## ## Revision 1.10 1999/10/27 07:38:30 peterg ## Now does cse version -- but not needed now exept for Euler integration ## ## Revision 1.9 1999/10/26 23:47:58 peterg |
︙ | ︙ | |||
95 96 97 98 99 100 101 | echo Creating $outfile.m # Remove the old log file rm -f mtt_r2m.log | < | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | echo Creating $outfile.m # Remove the old log file rm -f mtt_r2m.log if [ "$rep" = "ode" ]||[ "$rep" = "cse" ]; then #echo Creating $1_odea.$ext outfileo=$outfile"o" echo Creating $outfileo.m #rm -f $1_odea.$ext.1; |
︙ | ︙ | |||
190 191 192 193 194 195 196 | # Convert from Pascal syntax to Octave syntax mtt_p2m<$1_$2o.p > $1_$2o.m rm -f $1_odeo.p fi | | | | | 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | # Convert from Pascal syntax to Octave syntax mtt_p2m<$1_$2o.p > $1_$2o.m rm -f $1_odeo.p fi if [ "$rep" = "sm" ]||[ "$rep" = "ssm" ]||[ "$rep" = "dm" ]; then if [ "$rep" = "sm" ]||[ "$rep" = "ssm" ]; then #Header lang_header $1 $rep $ext '' [mtta,mttb,mttc,mttd] > $outfile.p Symbols='a b c d' fi if [ "$rep" = "dm" ]; then #Header lang_header $1 $rep $ext '' [mtta,mttb,mttc,mttd,mtte] > $outfile.p Symbols='a b c d e' fi for Symbol in $Symbols; do rm -f $outfile.1 if [ "$rep" = "sm" ]||[ "$rep" = "ssm" ]; then case $Symbol in a) N=MTTNx; M=MTTNx ;; b) N=MTTNx; M=MTTNu ;; |
︙ | ︙ |