Sigma Squared

MMULT

MMULT

May 31, 2023
|
No Comments

Definition: MMULT is a function that returns the matrix product of two given arrays.

Syntax: =MMULT(array1, array2)

Situation: This formula is appropriate when you need to find the matrix product of two given arrays.

Example: If you have two matrix arrays { {1, 2}, {3, 4} } and { {5, 6}, {7, 8} }, the product can be found using the formula =MMULT({{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}), which returns { {19, 22}, {43, 50} }.

Leave a Reply

Your email address will not be published. Required fields are marked *