Click or drag to resize

RectangularMatrixMultiply Operator (RectangularMatrix, RectangularMatrix)

Multiplies two real, rectangular matrices.

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

Parameters

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

Return Value

Type: RectangularMatrix
The product matrix AB.
Exceptions
ExceptionCondition
ArgumentNullExceptionA or B is .
DimensionMismatchExceptionThe column count of A does not equal the row count of B.
See Also