Overview
Comment: | Removes translation of: mttx mttdx mtty mttu |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
dc422c1b0859296adf17ef5f75a7e9d1 |
User & Date: | gawthrop@users.sourceforge.net on 1997-08-28 13:41:57 |
Other Links: | branch diff | manifest | tags |
Context
1997-08-28
| ||
14:07:16 | Changed MTTDx to MTTDeriv check-in: 6de8ef40a0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:41:57 |
Removes translation of: mttx mttdx mtty mttu check-in: dc422c1b08 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:08:24 | Added RS component to the two-port list check-in: a7e3c46c7d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/matlab_tidy from [c659bf0ded] to [7600d39958].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Bourne shell script: matlab_tidy # Tidies up Matlab format files # P.J.Gawthrop 14 June 1990 13 Nov 1990, 19 Nov 93, April 1994, Dec 1994, # June 1995 # Copyright (c) P.J.Gawthrop, 1990, 1994, 1995. #rm junk cat $1 | \ | > > > > > < | 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 | #! /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 # P.J.Gawthrop 14 June 1990 13 Nov 1990, 19 Nov 93, April 1994, Dec 1994, # June 1995 # Copyright (c) P.J.Gawthrop, 1990, 1994, 1995. #rm junk #tr "[A-Z]" "[a-z]" | \ cat $1 | \ sed -e "s/ //" \ -e "s/ //" \ -e "s/\$\$//" \ -e "s/\.\.;;/../" \ -e "s/\$/;/g" \ -e "s/;;;//g" \ -e "s/;;/;/g" \ |
︙ | ︙ | |||
38 39 40 41 42 43 44 | -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" \ | < < < < | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | -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" \ |
︙ | ︙ |