11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 2000/12/28 09:09:52 peterg
## Initial revision
##
##
###############################################################
#Inform user
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 2001/05/08 15:18:10 gawthrop
## Added trig and hyperbolic functions to argument exclusion list
##
## Revision 1.1 2000/12/28 09:09:52 peterg
## Initial revision
##
##
###############################################################
#Inform user
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
## NB the following messes up the expansion switch ????
cat >> $1_subs.r <<EOF
% Ordering switch
ORDER
EOF
# Symbolic params first
awk '{
print $1 ","
}' < $1_sympar.txt >> $1_subs.r
# Then states
Nx=`mtt_getsize $1 x` # States
awk 'END{
for (k=1;k<Nx;k++){
printf("mttx%i,\n", k);
}
printf("mttx%i;\n", Nx);
}' Nx=$Nx < $1_sympar.txt >> $1_subs.r
|
|
|
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
## NB the following messes up the expansion switch ????
cat >> $1_subs.r <<EOF
% Ordering switch
ORDER
EOF
# Symbolic params first
gawk '{
print $1 ","
}' < $1_sympar.txt >> $1_subs.r
# Then states
Nx=`mtt_getsize $1 x` # States
gawk 'END{
for (k=1;k<Nx;k++){
printf("mttx%i,\n", k);
}
printf("mttx%i;\n", Nx);
}' Nx=$Nx < $1_sympar.txt >> $1_subs.r
|