Matrix multiplication: Difference between revisions

Content deleted Content added
Added TI-83 BASIC example
Line 375:
FROM a AS lhs, b AS rhs
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.