Index: mttroot/mtt/bin/trans/latex_matrix.r ================================================================== --- mttroot/mtt/bin/trans/latex_matrix.r +++ mttroot/mtt/bin/trans/latex_matrix.r @@ -9,10 +9,13 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% 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 %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -50,15 +53,15 @@ 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 MTT_Matrix_name, "_", Row, Col, " = {", MTT_element, "}\cr"; write "\end{equation}"; END; END; END; END; END; END; END;;