Syntax:
M_MULT( matrix_1:Range or Array, matrix_2:Range or Array )
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).