Overview
Comment: | Latex matrix with no parentheses |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2050392fd7e3c5db381f50dc47abe49c |
User & Date: | gawthrop@users.sourceforge.net on 2014-04-18 00:31:40 |
Other Links: | branch diff | manifest | tags |
Context
2014-04-18
| ||
00:36:40 | No parentheses. check-in: 324914473f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
00:31:40 | Latex matrix with no parentheses check-in: 2050392fd7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2014-04-07
| ||
04:41:32 | Working version check-in: da5006b495 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/latex_matrix_no.r version [5376ee5dcb].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%% 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.7 2000/11/02 14:28:08 peterg %% and up to 10 ... %% %% Revision 1.6 2000/10/10 21:02:42 peterg %% *** empty log message *** %% %% 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<10 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{matrix}"; FOR Row := 1:MTT_Matrix_n DO BEGIN FOR Col := 1:MTT_Matrix_m DO BEGIN write "{", MTT_Matrix(Row,Col), "}"; IF Col<MTT_Matrix_m THEN Write "&" END; IF Row<MTT_Matrix_n THEN Write "\cr"; END; write "\end{matrix}"; write "\end{equation}"; END; END ELSE %% write out the elements one-by-one. IF MTT_Matrix_n>0 THEN IF MTT_Matrix_m>0 THEN BEGIN FOR Row := 1:MTT_Matrix_n DO BEGIN FOR Col := 1:MTT_Matrix_m DO BEGIN MTT_element := MTT_Matrix(Row,Col); IF MTT_element NEQ 0 THEN BEGIN write "\begin{equation}"; write MTT_Matrix_name, "_", Row, Col, " = {", MTT_element, "}\cr"; write "\end{equation}"; END; END; END; END; END; END; END;; |