MatrixSubtract Method (Matrix6By6, Matrix) |
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: 24.2.419.0 (24.2.419.0)
Syntax public static Matrix Subtract(
Matrix6By6 minuend,
Matrix subtrahend
)
Public Shared Function Subtract (
minuend As Matrix6By6,
subtrahend As Matrix
) As Matrix
public:
static Matrix^ Subtract(
Matrix6By6^ minuend,
Matrix^ subtrahend
)
static member Subtract :
minuend : Matrix6By6 *
subtrahend : Matrix -> Matrix
Parameters
- minuend
- Type: AGI.Foundation.CoordinatesMatrix6By6
The Matrix6By6 being subtracted from. - subtrahend
- Type: AGI.Foundation.CoordinatesMatrix
The Matrix to subtract.
Return Value
Type:
MatrixA
Matrix which is the subtraction of the two given matrices.
See Also