| MatrixFSubtraction Operator |
Subtracts two matrices.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static MatrixF operator -(
MatrixF minuend,
MatrixF subtrahend
)
Public Shared Operator - (
minuend As MatrixF,
subtrahend As MatrixF
) As MatrixF
public:
static MatrixF^ operator -(
MatrixF^ minuend,
MatrixF^ subtrahend
)
static let inline (-)
minuend : MatrixF *
subtrahend : MatrixF : MatrixF
Parameters
- minuend
- Type: DigitalRune.Mathematics.AlgebraMatrixF
The first matrix (minuend). - subtrahend
- Type: DigitalRune.Mathematics.AlgebraMatrixF
The second matrix (subtrahend).
Return Value
Type:
MatrixFThe difference of the two matrices.
Exceptions See Also