1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.2 1996/08/20 08:26:06 peter
# Version control header added.
#
###############################################################
# Bourne shell script: matlab_tidy
# Tidies up Matlab format files
|
>
>
>
>
>
>
>
|
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
|
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.3 1997/08/28 13:41:57 peterg
# Removes translation of:
# mttx
# mttdx
# mtty
# mttu
#
# Revision 1.2 1996/08/20 08:26:06 peter
# Version control header added.
#
###############################################################
# Bourne shell script: matlab_tidy
# Tidies up Matlab format files
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
-e "s/;;/;/g" \
-e "s/:=/=/g" \
-e "s/ e /e/g" \
-e "s/*;/* .../g" \
-e "s/+;/+ .../g" \
-e "s/ . //g" \
-e "s/^;$//g" \
-e "s/mttx0/X_0/g" \
-e "s/mttu0/u_0/g" \
-e "s/mtty0/y_0/g" \
-e "s/mtta/A/g" \
-e "s/mttb/B/g" \
-e "s/mttc/C/g" \
-e "s/mttd/D/g" \
-e "s/mtte/E/g" \
-e "s/mtttf/G/g" \
-e "s/mttpar/MTTPAR/g" \
-e "s/\.\.\\$/../g" \
-e "s/\\$/;/g" \
-e "s/inv(mtte)\*/mtte\\\/g"\
-e "s/\\$//" |\
tr -s '\012' '\012'\
>junk
mv junk $1
|
<
<
<
<
<
<
<
<
<
<
|
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
-e "s/;;/;/g" \
-e "s/:=/=/g" \
-e "s/ e /e/g" \
-e "s/*;/* .../g" \
-e "s/+;/+ .../g" \
-e "s/ . //g" \
-e "s/^;$//g" \
-e "s/\.\.\\$/../g" \
-e "s/\\$/;/g" \
-e "s/inv(mtte)\*/mtte\\\/g"\
-e "s/\\$//" |\
tr -s '\012' '\012'\
>junk
mv junk $1
|