| MatrixFSubtract Method |
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 Subtract(
MatrixF minuend,
MatrixF subtrahend
)
Public Shared Function Subtract (
minuend As MatrixF,
subtrahend As MatrixF
) As MatrixF
public:
static MatrixF^ Subtract(
MatrixF^ minuend,
MatrixF^ subtrahend
)
static member Subtract :
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