Click or drag to resize

AnySquareMatrixMultiply Operator

Multiplies any two real, square matrices.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static SquareMatrix operator *(
	AnySquareMatrix A,
	AnySquareMatrix B
)

Parameters

A
Type: Meta.Numerics.MatricesAnySquareMatrix
The first matrix.
B
Type: Meta.Numerics.MatricesAnySquareMatrix
The second matrix.

Return Value

Type: SquareMatrix
The product matrix AB.
Remarks

Matrix multiplication is an O(N3) process.

See Also