ComplexMatrixSubtract Method |
Creates a
ComplexMatrix 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 ComplexMatrix Subtract(
ComplexMatrix minuend,
ComplexMatrix subtrahend
)
Public Shared Function Subtract (
minuend As ComplexMatrix,
subtrahend As ComplexMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ Subtract(
ComplexMatrix^ minuend,
ComplexMatrix^ subtrahend
)
static member Subtract :
minuend : ComplexMatrix *
subtrahend : ComplexMatrix -> ComplexMatrix
Parameters
- minuend
- Type: AGI.Foundation.CoordinatesComplexMatrix
The Matrix being subtracted from. - subtrahend
- Type: AGI.Foundation.CoordinatesComplexMatrix
The Matrix to subtract.
Return Value
Type:
ComplexMatrixA
Matrix which is the subtraction of the two given matrices.
Exceptions See Also