Overview
Comment: | Fixed case of MTT_EXAMPLES |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0780d9f4e17ed7e5558c9171b6980fa8 |
User & Date: | geraint@users.sourceforge.net on 2008-07-22 17:37:01 |
Other Links: | branch diff | manifest | tags |
Context
2008-07-22
| ||
17:38:32 |
Replace positional parameter 1 with hard-coded path when converting mttrc to mtt.conf Strict Bourne shells cannot cope with positional parameters when sourcing. check-in: 495de0ca7a user: geraint@users.sourceforge.net tags: origin/master, trunk | |
17:37:01 | Fixed case of MTT_EXAMPLES check-in: 0780d9f4e1 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2006-09-27
| ||
13:55:08 | Write complex numbers in polar form instead of real and imaginary parts. check-in: 01565bdd6f user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [8f0d3ef6f7] to [5e0b5636b9].
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.415 2006/02/09 23:58:24 geraint ## rtxi: builds but does not yet work. ## ## Revision 1.414 2005/11/18 17:23:19 geraint ## rtxi. ## ## Revision 1.413 2005/11/16 00:43:15 geraint | > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.416 2006/09/27 13:03:20 geraint ## Fixed fr.view and enabled commands to directly build ??fr.m ## ## Revision 1.415 2006/02/09 23:58:24 geraint ## rtxi: builds but does not yet work. ## ## Revision 1.414 2005/11/18 17:23:19 geraint ## rtxi. ## ## Revision 1.413 2005/11/16 00:43:15 geraint |
︙ | ︙ | |||
2062 2063 2064 2065 2066 2067 2068 | fi # Copy systems from the example library if [ "$1" = "copy" ]; then #set up source and destination dirs source=$3 if [ -z "$source" ]; then | | | 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 | fi # Copy systems from the example library if [ "$1" = "copy" ]; then #set up source and destination dirs source=$3 if [ -z "$source" ]; then source=$MTT_EXAMPLES fi destination=$4 if [ -z "${destination}" ]; then destination=$2 fi # check that its not here already file_exists=`ls ${destination}/$2_abg.fig 2> /dev/null` |
︙ | ︙ |