Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
module MatrixOps;
|
||||
type
|
||||
Matrix = array {math} *,* of integer;
|
||||
|
||||
|
||||
procedure WriteMatrix(x: array {math} *,* of integer);
|
||||
var
|
||||
i,j: integer;
|
||||
begin
|
||||
for i := 0 to len(x,0) - 1 do
|
||||
for j := 0 to len(x,1) - 1 do
|
||||
write(x[i,j]);
|
||||
end;
|
||||
writeln;
|
||||
end
|
||||
end WriteMatrix;
|
||||
|
||||
procedure Multiplication;
|
||||
var
|
||||
a,b: Matrix;
|
||||
begin
|
||||
a := [[1,2],[3,4],[5,6],[7,8]];
|
||||
b := [[1,2,3],[4,5,6]];
|
||||
WriteMatrix(a * b);
|
||||
end Multiplication;
|
||||
|
||||
begin
|
||||
Multiplication;
|
||||
end MatrixOps.
|
||||
Loading…
Add table
Add a link
Reference in a new issue