Click or drag to resize

AnyRectangularMatrixSubtraction Operator

Subtracts any two real, rectangular matrices.

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

Parameters

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

Return Value

Type: RectangularMatrix
The difference matrix A - B.
Remarks

Matrix subtraction is an O(N2) process.

See Also