Differences From Artifact [eb3b78baaa]:
- Executable file mttroot/mtt/bin/trans/reduce_matrix.r — part of check-in [d611ac00e5] at 1998-01-22 10:39:01 on branch origin/master — Initial revision (user: gawthrop@users.sourceforge.net, size: 958) [annotate] [blame] [check-ins using]
To Artifact [80a2f375d5]:
- Executable file mtt/bin/trans/reduce_matrix.r — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 1072) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/mtt/bin/trans/reduce_matrix.r — part of check-in [4fe881277d] at 2000-08-24 09:09:22 on branch origin/master — *** empty log message *** (user: gawthrop@users.sourceforge.net, size: 1072) [annotate] [blame] [check-ins using]
| ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 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 | + + + + |
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% % Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% % $Id$
% % $Log$
% % Revision 1.1 1998/01/22 10:39:01 peterg
% % Initial revision
% %
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PROCEDURE Reduce_Matrix;
BEGIN
IF MTT_Matrix_n>0 THEN
IF MTT_Matrix_m>0 THEN
BEGIN
write "clear ", MTT_Matrix_name, ";";
write "MATRIX ", MTT_Matrix_name, "(", MTT_Matrix_n, ",",
MTT_Matrix_m, ");";
FOR i := 1:MTT_Matrix_n DO
FOR j := 1:MTT_Matrix_m DO IF MTT_Matrix(i,j) NEQ 0 THEN
write MTT_Matrix_name, "(", i, ",", j, ") := ",
MTT_Matrix(i,j), ";";
|
| ︙ |