Click or drag to resize
DigitalRuneMatrixFMultiply Operator (MatrixF, MatrixF)
Multiplies two matrices.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public static MatrixF operator *(
	MatrixF matrix1,
	MatrixF matrix2
)

Parameters

matrix1
Type: DigitalRune.Mathematics.AlgebraMatrixF
The first matrix.
matrix2
Type: DigitalRune.Mathematics.AlgebraMatrixF
The second matrix.

Return Value

Type: MatrixF
The matrix with the product the two matrices.
Exceptions
ExceptionCondition
ArgumentNullExceptionmatrix1 or matrix2 is .
ArgumentException The matrix dimensions are not suitable for a matrix multiplication.
See Also