MatrixSubtraction Operator (Matrix, Matrix3By3) |
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 operator -(
Matrix minuend,
Matrix3By3 subtrahend
)
Public Shared Operator - (
minuend As Matrix,
subtrahend As Matrix3By3
) As Matrix
public:
static Matrix^ operator -(
Matrix^ minuend,
Matrix3By3 subtrahend
)
static let inline (-)
minuend : Matrix *
subtrahend : Matrix3By3 : Matrix
Parameters
- minuend
- Type: AGI.Foundation.CoordinatesMatrix
The Matrix being subtracted from. - subtrahend
- Type: AGI.Foundation.CoordinatesMatrix3By3
The Matrix3By3 to subtract.
Return Value
Type:
MatrixA
Matrix which is the subtraction of the two given matrices.
See Also