SquareMatrixSubtraction Operator |
Computes the difference of two square matrices.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static SquareMatrix operator -(
SquareMatrix A,
SquareMatrix B
)
Public Shared Operator - (
A As SquareMatrix,
B As SquareMatrix
) As SquareMatrix
public:
static SquareMatrix^ operator -(
SquareMatrix^ A,
SquareMatrix^ B
)
static let inline (-)
A : SquareMatrix *
B : SquareMatrix : SquareMatrix
Parameters
- A
- Type: Meta.Numerics.MatricesSquareMatrix
The first matrix. - B
- Type: Meta.Numerics.MatricesSquareMatrix
The second matrix.
Return Value
Type:
SquareMatrixThe difference
A -
B.
Exceptions Remarks Matrix subtraction is an O(N2) process.
See Also