Overview
Comment: | Added global variables. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
72c8f4b9359e3e8386725f069f26985b |
User & Date: | gawthrop@users.sourceforge.net on 1997-04-16 11:40:31 |
Other Links: | branch diff | manifest | tags |
Context
1997-04-16
| ||
13:43:29 | Added matrix dimenensions check-in: e5f40ddabd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:40:31 | Added global variables. check-in: 72c8f4b935 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:37:22 | Initial revision check-in: 92250e48a7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/sympar2params_txt2m from [63a834d1ca] to [48695f1650].
︙ | ︙ | |||
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 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Inform user echo "Creating $1_params.m" rm -f mtt_error #Write some file headers echo "% Parameter file for system $1 ($1_params.m)" > $1_params.m echo "% This file provides the system params for simulation:" >> $1_params.m echo "% Generated by MTT at `date`" >> $1_params.m echo "% These default parameters should be changed by the user" >> $1_params.m echo >> $1_params.m cat $MTTPATH/trans/rcs_header.m >> $1_params.m echo >> $1_params.m #Write out the variables in c format. awk '{i++; print tolower($1) " = \t1.0;"}' $1_sympar.txt >> $1_params.m # Now invoke the standard error handling. # mtt_error mtt_error.txt | > > > > > | 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 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.1 1997/04/16 11:31:41 peterg # Initial revision # ############################################################### # Inform user echo "Creating $1_params.m" rm -f mtt_error #Write some file headers echo "% Parameter file for system $1 ($1_params.m)" > $1_params.m echo "% This file provides the system params for simulation:" >> $1_params.m echo "% Generated by MTT at `date`" >> $1_params.m echo "% These default parameters should be changed by the user" >> $1_params.m echo >> $1_params.m #Write out the global variables sympar2global_txt2m $1 >> $1_params.m cat $MTTPATH/trans/rcs_header.m >> $1_params.m echo >> $1_params.m #Write out the variables in c format. awk '{i++; print tolower($1) " = \t1.0;"}' $1_sympar.txt >> $1_params.m # Now invoke the standard error handling. # mtt_error mtt_error.txt |