11 lines
440 B
Plaintext
11 lines
440 B
Plaintext
MatrixA$ ="4, 4, 1, 1, 1, 1, 2, 4, 8, 16, 3, 9, 27, 81, 4, 16, 64, 256"
|
|
MatrixB$ ="4, 4, 4, -3, 4/3, -1/4 , -13/3, 19/4, -7/3, 11/24, 3/2, -2, 7/6, -1/4, -1/6, 1/4, -1/6, 1/24"
|
|
|
|
print "Product of two matrices"
|
|
call DisplayMatrix MatrixA$
|
|
print " *"
|
|
call DisplayMatrix MatrixB$
|
|
print " ="
|
|
MatrixP$ =MatrixMultiply$( MatrixA$, MatrixB$)
|
|
call DisplayMatrix MatrixP$
|