TRUECALC
Functions

MMULT

Returns the matrix product of two arrays

Try it

When to use it

When should I use MMULT?

Use MMULT to multiply two matrices together, useful for transforming data, solving linear systems, or applying weights across multiple variables.

Used in

science

Syntax

MMULT(array1, array2)

Examples

=MMULT({1,2;3,4},{5,6;7,8}) // => 19
=MMULT({1,2,3;4,5,6},{7,8;9,10;11,12}) // => 58
=MMULT({1,2},{3;4}) // => 11

On this page