logo
excelfunctions.org
bookmarks

MMULT

Returns the matrix product of two arrays.

Math & TrigonometryMath Basics

What it does

Multiplies two matrices.

Syntax

MMULT(array1, array2)

Arguments

  • array1(array) β€” First matrix.
  • array2(array) β€” Second matrix.

Examples

Matrix Multiplication

Multiply matrices.

FORMULA
=MMULT(A1:B1, D1:E2)
RESULT
[5, 11]
SAMPLE DATA
ABCDE
11213
224