ComplexMatrixAdd Method (ComplexMatrix, ComplexMatrix) |
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: 21.1.408.0 (21.1.408.0)
Syntaxpublic static ComplexMatrix Add(
ComplexMatrix leftAddend,
ComplexMatrix rightAddend
)
Public Shared Function Add (
leftAddend As ComplexMatrix,
rightAddend As ComplexMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ Add(
ComplexMatrix^ leftAddend,
ComplexMatrix^ rightAddend
)
static member Add :
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 and the given matrix
ExceptionsException | Condition |
---|
InvalidOperationException | Thrown if the dimensions of the leftAddend parameter do not match the dimensions of the
rightAddend parameter. |
See Also