9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
+
+
+
|
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% % Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% % $Id$
% % $Log$
% % Revision 1.1 1998/05/23 10:49:25 peterg
% % Initial revision
% %
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PROCEDURE Lang_Matrix;
BEGIN
ON NERO;
|
31
32
33
34
35
36
37
38
39
40
41
42
43
|
34
35
36
37
38
39
40
41
42
43
44
45
46
|
-
+
|
GENTRAN mtt_matrix(i,j) ::=: mtt_matrix(i,j);
END
ELSE
BEGIN
GENTRAN mtt_matrix(i) ::=: mtt_matrix(i,1);
END;
END;
write MTT_matrix_name, " = mtt_matrix;";
% write MTT_matrix_name, " = mtt_matrix;";
END;
END;;
|