11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.2 1997/04/16 11:40:31 peterg
# Added global variables.
#
# Revision 1.1 1997/04/16 11:31:41 peterg
# Initial revision
#
###############################################################
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 1997/04/17 11:18:34 peterg
## Write out the RCS header first!
##
# Revision 1.2 1997/04/16 11:40:31 peterg
# Added global variables.
#
# Revision 1.1 1997/04/16 11:31:41 peterg
# Initial revision
#
###############################################################
|
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#Write out the global variables
sympar2global_txt2m $1 >> $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
|
|
|
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#Write out the global variables
sympar2global_txt2m $1 >> $1_params.m
#Write out the variables in c format.
gawk '{i++; print tolower($1) " = \t1.0;"}' $1_sympar.txt >> $1_params.m
# Now invoke the standard error handling.
# mtt_error mtt_error.txt
|