I am just trying to do simple matrix multiplication and for some reason the method I am using will not work. I have tried other float values in some matrices and sometimes it works so I'm at a loss for the issue. Any help would be greatly appreciated. I am using Maple 16. Here's the code:
with(LinearAlgebra):
A := Matrix([[.2047935304, -.1283655391], [-.1283655391, .2047935304]]):
B := Matrix([[0], [1.2]]):
Multiply(A,B);
When I try to run it, it never seems to compute it. I'm sure I'm doing something stupid, but I just can't figure it out. Thanks for the help!