Matrix<T>.Multiply(Matrix<T>, Matrix<T>) Operator

Multiplies two matrix objects.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<T> operator *(
	Matrix<T> matrix1,
	Matrix<T> matrix2
)

Parameters

matrix1  Matrix<T>
The first Matrix<T>.
matrix2  Matrix<T>
The second Matrix<T>.

Return Value

Matrix<T>
A Matrix<T> that is the product of matrix1 and matrix2.

Exceptions

DimensionMismatchExceptionThe number of columns of matrix1 does not equal the number of rows of matrix2.

See Also