Click or drag to resize

MatrixMultiply Operator (Matrix, Matrix)

Creates a Matrix which is the linear algebra multiplication of the two given matrices.

The most efficient operation to do this is chosen through double dispatch based on the concrete types of the given matrices.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static Matrix operator *(
	Matrix multiplicand,
	Matrix multiplier
)

Parameters

multiplicand
Type: AGI.Foundation.CoordinatesMatrix
The first Matrix to multiply.
multiplier
Type: AGI.Foundation.CoordinatesMatrix
The second Matrix to multiply.

Return Value

Type: Matrix
A Matrix which is the multiplication of this matrix and the given matrix.
See Also