MMULT()

Syntax. MMULT(array1,array2)

Definition. This function returns the product of two arrays. The result is an array with the same number of rows as array1 and the same number of columns as array2.

Arguments

Background. The arguments array1 and array2 can be any of the following:

To allow the calculation of the product of two arrays, the number of columns in array1 must be the same as the number of rows in array2. Both arrays only can contain numbers.

To calculate the product, the row elements of the first array are multiplied with the column elements of the second array.

image with no caption

Example. See the example for the MINVERSE() function.

See Also

MDETERM(), MINVERSE(), TRANSPOSE()