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