Matrix multiplication: Difference between revisions

Content added Content deleted
(Add emacs lisp)
(add RPL)
Line 5,579: Line 5,579:
456
456
789
789
</pre>

=={{header|RPL}}==
The <code>*</code> operator can multiply numbers of any kind together, matrices - and even lists in latest RPL versions.
[[1 2 3][4 5 6]] [[3 1][4 1][5 9]] *
{{out}}
<pre>
1: [[ 26 30 ]
[ 62 63 ]]
</pre>
</pre>