mxmul

Syntax:

Return Range  mxmul(Range matrix1, Range matrix2)

Description:

Performs matrix multiplication of matrix1 by matrix2 and places it at the current cell. Matrix inner dimensions must be the same.

Examples:

($a4) = mxmul($a1:$c3, $d1:$e3)
Before:
AB CDE
114745
225837
3362028
4
5
6
After:
AB CDE
114745
225837
3362028
430890
5391090
6702170
($a2) = mxmul($a1:$d5, $a11:$c14)