|  | Matrix33FSubtract Method | 
            Subtracts two matrices.
            
 
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
 Syntax
Syntaxpublic static Matrix33F Subtract(
	Matrix33F minuend,
	Matrix33F subtrahend
)
Public Shared Function Subtract ( 
	minuend As Matrix33F,
	subtrahend As Matrix33F
) As Matrix33F
public:
static Matrix33F Subtract(
	Matrix33F minuend, 
	Matrix33F subtrahend
)
static member Subtract : 
        minuend : Matrix33F * 
        subtrahend : Matrix33F -> Matrix33F 
Parameters
- minuend
- Type: DigitalRune.Mathematics.AlgebraMatrix33F
 The first matrix (minuend).
- subtrahend
- Type: DigitalRune.Mathematics.AlgebraMatrix33F
 The second matrix (subtrahend).
Return Value
Type: 
Matrix33FThe difference of the two matrices.
 See Also
See Also