Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d60d57f4471ed2f9d1707f7c5cf087bc |
User & Date: | gawthrop@users.sourceforge.net on 1997-04-16 11:31:41 |
Other Links: | branch diff | manifest | tags |
Context
1997-04-16
| ||
11:37:22 | Initial revision check-in: 92250e48a7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:31:41 | Initial revision check-in: d60d57f447 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:46:01 | More informative copy message check-in: cee182e30a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/sympar2params_txt2m version [63a834d1ca].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: sympar2params_txt2m # Symbolic parameters to default paramers (m) # P.J.Gawthrop March 1997 # 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 |