Overview
Comment: | now uses the (extended with switch) sympars.txt file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7462cd90ac982bc2cb6285d580daa433 |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-25 18:27:45 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-25
| ||
18:35:02 | Initial revision check-in: 636b58fc0c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:27:45 | now uses the (extended with switch) sympars.txt file check-in: 7462cd90ac user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:26:33 | *** empty log message *** check-in: 73f4b5eedb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/sympar2global_txt2m from [00732c2f17] to [e9d0bd4b0f].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.1 1997/04/16 11:37:22 peterg # Initial revision # ############################################################### #Write out the variables in matlab global format awk ' BEGIN{ var = "foobar"; print "global ..." } {i++; print tolower($1), "..."; var = $1} END{ print var ";" # Repeat the last variable to avoid the trailing ... | > > > | | 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 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1998/03/22 11:13:27 peterg ## Back under RCS ## # Revision 1.1 1997/04/16 11:37:22 peterg # Initial revision # ############################################################### #Write out the variables in matlab global format awk ' BEGIN{ var = "foobar"; print "global ..." } {i++; print tolower($1), "..."; var = $1} END{ print var ";" # Repeat the last variable to avoid the trailing ... }' $1_sympars.txt # Now invoke the standard error handling. # mtt_error mtt_error.txt |