Overview
| Comment: | Removed comma from array subscript |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9617163facc73943d9998afe975ff738 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-03-14 11:07:09.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-03-20
| ||
| 15:09:26 | Changed order of prerequisites for _dae.r to put _rdae.r first. check-in: 51a30a0db0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1998-03-14
| ||
| 11:07:09 | Removed comma from array subscript check-in: 9617163fac user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 10:44:26 | Initial revision check-in: 2cc4d5a3b8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/latex_matrix.r
from [2969ca8fc4]
to [0f42c502d3].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% 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.1 1998/01/22 09:59:36 peterg
%% Initial revision
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PROCEDURE Latex_Matrix;
| > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% 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.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;
|
| ︙ | ︙ | |||
48 49 50 51 52 53 54 |
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}";
| | | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
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;;
|