Overview
| Comment: | *** empty log message *** |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2b925d49fa590b1d958dd5ad3fecb027 |
| User & Date: | gawthrop@users.sourceforge.net on 1999-11-22 23:04:08.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1999-11-22
| ||
| 23:19:56 | Now writes out modifies MTTNx and MTTNy check-in: de2a9d1b20 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 23:04:08 | *** empty log message *** check-in: 2b925d49fa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 23:01:55 |
Now does multiple parameters. Output function now included. check-in: 7c4507b23d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cse_r2tex
from [c81c9ec124]
to [141bf5cd1e].
| ︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1991, 1994. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.2 1996/11/12 09:11:20 peterg # Removed all the hoorrible name changes # # Revision 1.1 1996/11/05 09:19:28 peterg # Initial revision # ############################################################### | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1991, 1994. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.3 1996/11/12 09:53:59 peterg # Reads in the params.r file now. # # Revision 1.2 1996/11/12 09:11:20 peterg # Removed all the hoorrible name changes # # Revision 1.1 1996/11/05 09:19:28 peterg # Initial revision # ############################################################### |
| ︙ | ︙ | |||
60 61 62 63 64 65 66 | write "%File: $1_cse.tex"; write "%constrained-state equations"; IF MTTNx>0 THEN FOR Row := 1:MTTNx DO BEGIN | | | | | | | | | | | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
write "%File: $1_cse.tex";
write "%constrained-state equations";
IF MTTNx>0 THEN
FOR Row := 1:MTTNx DO
BEGIN
write"\begin{equation}";
write "\dot MTTEX", Row, " = ";
write "{";
write MTTEdX(Row,1);
write "}";
write"\end{equation}";
END;
IF MTTNy>0 THEN
FOR Row := 1:MTTNy DO
BEGIN
write"\begin{equation}";
write "MTTy", Row, " = ";
write "{";
write MTTy(Row,1);
write "}";
write"\end{equation}";
END;
IF MTTNx NEQ 0 THEN
BEGIN
write "% - E matrix";
write "\begin{equation}";
write "MTTE = \begin{pmatrix}";
FOR Row := 1:MTTNx DO
BEGIN
FOR Col := 1:MTTNx DO
BEGIN
Write "{", MTTE(Row,Col), "}";
IF Col<MTTNx THEN Write "&"
END;
IF Row<MTTNx THEN Write "\cr";
END;
Write "\end{pmatrix}";
write "\end{equation}";
END;
%write "% - E matrix";
%write "\begin{eqnarray}";
% FOR Row := 1:MTTNx DO
% BEGIN
% FOR Col := 1:MTTNx DO %IF MTTE(Row,Col) NEQ 0 THEN
% BEGIN
% Write "MTTE", Row, Col, " &=& {", MTTE(Row,Col), "}";
% IF Row<MTTNx OR Col<MTTNx THEN Write "\cr";
% END;
% END;
%write "\end{eqnarray}";
SHUT "$1_cse.tex";
quit;
EOF
|