MatrixSubtract Method (Matrix, Matrix6By6) | 
 
            Creates a 
Matrix whose elements have the values of the elements of the minuend matrix
            subtracted by the elements of the subtrahend matrix.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static Matrix Subtract(
	Matrix minuend,
	Matrix6By6 subtrahend
)
Public Shared Function Subtract ( 
	minuend As Matrix,
	subtrahend As Matrix6By6
) As Matrix
public:
static Matrix^ Subtract(
	Matrix^ minuend, 
	Matrix6By6^ subtrahend
)
static member Subtract : 
        minuend : Matrix * 
        subtrahend : Matrix6By6 -> Matrix 
Parameters
- minuend
 - Type: AGI.Foundation.CoordinatesMatrix
The Matrix being subtracted from. - subtrahend
 - Type: AGI.Foundation.CoordinatesMatrix6By6
The Matrix6By6 to subtract. 
Return Value
Type: 
MatrixA 
Matrix which is the subtraction of the two given matrices.
See Also