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
51
52
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
# Remove the old log file
rm -f cbg_m2fig.log
rm -f mtt_info.txt
cp $1_fig.fig $1_cbg.fig
#Inform user
echo Creating $1_cbg.fig
# Use matrix manipulation to accomplish the transformation
$MATRIX > cbg_m2fig.log 2>> cbg_m2fig.log << EOF
system_name = '$1';
system_type = '$1';
full_name = '';
thick = 3; length = 250; red = 4; blue = 1; green = 12; font = 18;
cbg2fig(system_name, ...
system_type, full_name, ...
length, thick, blue, ...
font, green, red);
EOF
|
>
>
>
|
>
>
>
<
<
|
>
|
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
51
52
53
54
55
56
57
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1996/08/05 20:13:56 peter
## Initial revision
##
###############################################################
# Remove the old log file
rm -f cbg_m2fig.log
rm -f mtt_info.txt
# The following sets up the fig header file for the system
# and each sub system.
ls $1_*_cbg.m | sed 's/\(.*_\)\(.*_\)cbg.m/cp \2fig.fig \1\2cbg.fig/' | sh
#Inform user
echo Creating $1_cbg.fig
# Use matrix manipulation to accomplish the transformation
$MATRIX > cbg_m2fig.log 2>> cbg_m2fig.log << EOF
system_name = '$1';
thick = 3; length = 250; red = 4; blue = 1; green = 12; font = 18;
cbg2fig(system_name, ...
'', '', ...
length, thick, blue, ...
font, green, red);
EOF
cp $1_$1_cbg.fig $1_cbg.fig
|