Syntax:
M_MULT(matrix_1:Array|Range, matrix_2:Array|Range)
Returns the matrix product[1] of matrix_1 and matrix_2 as an array.
The result array will be of dimension a×c
if the dimension of matrix_1 is a×b
and the dimension of matrix_2 is b×c
(rows × columns).