Matrix multiplication: Difference between revisions

Content added Content deleted
(Added TI-83 BASIC example)
Line 375: Line 375:
FROM a AS lhs, b AS rhs
FROM a AS lhs, b AS rhs
WHERE lhs.x = 0 AND rhs.y = 0;
WHERE lhs.x = 0 AND rhs.y = 0;
=={{header|TI-83 BASIC}}==
Store your matrices in <tt>[A]</tt> and <tt>[B]</tt>.
Disp [A]*[B]
An error will show if the matrices have invalid dimensions for multiplication.