Overview
Comment: | *** empty log message *** |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
470e3ae16f4944f2e82b34f211519729 |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-10 21:03:20 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-11
| ||
08:01:42 | Added noglobal fudge check-in: 3ade5884b1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-10-10
| ||
21:03:20 | *** empty log message *** check-in: 470e3ae16f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
21:02:27 | Initial revision check-in: 99e267ac74 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/latex_matrix.r from [fa7a8c9311] to [f703a73ae6].
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 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%% Model Transformation Tools %%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Reduce function to write matrices in latex form % P.J.Gawthrop January 22 1998 % Copyright (c) P.J.Gawthrop, 1998 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Version control history %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% $Id$ %% $Log$ %% Revision 1.4 1998/11/10 14:15:36 peterg %% Now does matrix style for m<3 %% %% Revision 1.3 1998/03/14 11:07:09 peterg %% Removed comma from array subscript %% %% Revision 1.2 1998/02/25 22:11:28 peterg %% Added big matrix version %% %% Revision 1.1 1998/01/22 09:59:36 peterg %% Initial revision %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% PROCEDURE Latex_Matrix; BEGIN | > > > | | 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 34 35 36 37 38 39 40 41 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%% Model Transformation Tools %%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Reduce function to write matrices in latex form % P.J.Gawthrop January 22 1998 % Copyright (c) P.J.Gawthrop, 1998 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Version control history %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% $Id$ %% $Log$ %% Revision 1.5 2000/08/09 10:41:39 peterg %% Changed criterion form 3 to 5 %% %% Revision 1.4 1998/11/10 14:15:36 peterg %% Now does matrix style for m<3 %% %% Revision 1.3 1998/03/14 11:07:09 peterg %% Removed comma from array subscript %% %% Revision 1.2 1998/02/25 22:11:28 peterg %% Added big matrix version %% %% Revision 1.1 1998/01/22 09:59:36 peterg %% Initial revision %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% PROCEDURE Latex_Matrix; BEGIN IF MTT_Matrix_m<6 THEN %% Do matrix style version BEGIN IF MTT_Matrix_n>0 THEN IF MTT_Matrix_m>0 THEN BEGIN write "\begin{equation}"; write MTT_Matrix_name, " = \begin{pmatrix}"; FOR Row := 1:MTT_Matrix_n DO |
︙ | ︙ |
Modified mttroot/mtt/bin/trans/latex_tidy from [86ba410905] to [af802e64a1].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1990, 1994 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.14 1998/02/25 22:12:07 peterg ## Added , to regexp for subscripts ## ## Revision 1.13 1998/02/18 09:06:07 peterg ## Added dX0 ## ## Revision 1.12 1998/02/09 14:11:08 peterg | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1990, 1994 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.15 1998/04/07 08:44:11 peterg ## zapped eta - it messes up theta ## ## Revision 1.14 1998/02/25 22:12:07 peterg ## Added , to regexp for subscripts ## ## Revision 1.13 1998/02/18 09:06:07 peterg ## Added dX0 ## ## Revision 1.12 1998/02/09 14:11:08 peterg |
︙ | ︙ | |||
87 88 89 90 91 92 93 94 95 96 97 98 99 100 | -e "s/mttd/D/g" \ -e "s/mtte/E/g" \ -e "s/mttg/G/g" \ -e "s/mtti/I/g" \ -e "s/mttk/K/g" \ -e "s/mttl/L/g" \ -e "s/mttm/M/g" \ -e "s/mtto/O/g" \ -e "s/mttv/V/g" \ -e "s/mtty0/y_0/g" \ -e "s/mttu0/u_0/g" \ -e "s/mttx/x/g" \ -e "s/mttz/z/g" \ -e "s/mttyy/Y/g" \ | > | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | -e "s/mttd/D/g" \ -e "s/mtte/E/g" \ -e "s/mttg/G/g" \ -e "s/mtti/I/g" \ -e "s/mttk/K/g" \ -e "s/mttl/L/g" \ -e "s/mttm/M/g" \ -e "s/mtttheta/\\\Theta/g" \ -e "s/mtto/O/g" \ -e "s/mttv/V/g" \ -e "s/mtty0/y_0/g" \ -e "s/mttu0/u_0/g" \ -e "s/mttx/x/g" \ -e "s/mttz/z/g" \ -e "s/mttyy/Y/g" \ |
︙ | ︙ | |||
113 114 115 116 117 118 119 120 121 122 123 124 125 126 | -e "s/theta/\\\theta/g" \ -e "s/tau/\\\tau/g" \ -e "s/alpha/\\\alpha/g" \ -e "s/beta/\\\beta/g" \ -e "s/gamma/\\\gamma/g" \ -e "s/delta/\\\delta/g" \ -e "s/epsilon/\\\epsilon/g" \ -e "s/lambd/\\lambda/g" \ -e "s/lambda/\\\lambda/g" \ -e "s/mu/\\\mu/g" \ -e "s/phi/\\\phi/g" \ -e "s/pi/\\\pi/g" \ -e "s/rho/\\\rho/g" \ -e "s/sigma/\\\sigma/g" \ | > | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | -e "s/theta/\\\theta/g" \ -e "s/tau/\\\tau/g" \ -e "s/alpha/\\\alpha/g" \ -e "s/beta/\\\beta/g" \ -e "s/gamma/\\\gamma/g" \ -e "s/delta/\\\delta/g" \ -e "s/epsilon/\\\epsilon/g" \ -e "s/kappa/\\\kappa/g" \ -e "s/lambd/\\lambda/g" \ -e "s/lambda/\\\lambda/g" \ -e "s/mu/\\\mu/g" \ -e "s/phi/\\\phi/g" \ -e "s/pi/\\\pi/g" \ -e "s/rho/\\\rho/g" \ -e "s/sigma/\\\sigma/g" \ |
︙ | ︙ |
Modified mttroot/mtt/bin/trans/struc2state_txt2txt from [f70a16e630] to [0987d9a6d1].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% Version control history # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% $Id$ # %% $Log$ # %% Revision 1.7 1998/08/10 13:55:11 peterg # %% Added option of computing from ss values # %% # %% Revision 1.6 1998/07/27 20:32:11 peterg # %% Octave mode forced # %% # %% Revision 1.5 1998/07/25 20:10:01 peterg | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% Version control history # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% $Id$ # %% $Log$ # %% Revision 1.8 1998/08/10 13:57:33 peterg # %% Removed debugging lines # %% # %% Revision 1.7 1998/08/10 13:55:11 peterg # %% Added option of computing from ss values # %% # %% Revision 1.6 1998/07/27 20:32:11 peterg # %% Octave mode forced # %% # %% Revision 1.5 1998/07/25 20:10:01 peterg |
︙ | ︙ | |||
35 36 37 38 39 40 41 | # %% # %% Revision 1.1 1998/06/27 15:06:40 peterg # %% Initial revision # %% # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | | > | | > > > > > > > | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | # %% # %% Revision 1.1 1998/06/27 15:06:40 peterg # %% Initial revision # %% # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% while [ -n "`echo $1 | grep '-'`" ]; do case $1 in -ss ) steadystate_computation=yes ;; *) echo "$1 is an invalid argument - ignoring" ;; esac shift done #Create the state file complete with headers. echo '# -*-octave-*- Put Emacs into octave-mode' > $1_state.txt echo "# Initial state file ($1_state.txt)" >> $1_state.txt echo "# Generated by MTT at `date`" >> $1_state.txt cat $MTTPATH/trans/rcs_header.sh >> $1_state.txt |
︙ | ︙ |