ComplexMatrixAddition Operator |
Creates a
ComplexMatrix which is the sum of the two given matrices.
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 leftAddend,
ComplexMatrix rightAddend
)
Public Shared Operator + (
leftAddend As ComplexMatrix,
rightAddend As ComplexMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ operator +(
ComplexMatrix^ leftAddend,
ComplexMatrix^ rightAddend
)
static let inline (+)
leftAddend : ComplexMatrix *
rightAddend : ComplexMatrix : ComplexMatrix
Parameters
- leftAddend
- Type: AGI.Foundation.CoordinatesComplexMatrix
The first ComplexMatrix to sum. - rightAddend
- Type: AGI.Foundation.CoordinatesComplexMatrix
The second ComplexMatrix to sum.
Return Value
Type:
ComplexMatrixA
ComplexMatrix which is the sum of the two given matrices.
Exceptions Exception | Condition |
---|
InvalidOperationException |
Thrown when the dimensions of leftAddend do not match the dimensions of rightAddend.
|
See Also