ComplexMatrixAdd Method (ComplexMatrix) |
Creates a
ComplexMatrix which is the sum of this matrix and the given matrix.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.2.423.0 (25.2.423.0)
Syntaxpublic ComplexMatrix Add(
ComplexMatrix addend
)
Public Function Add (
addend As ComplexMatrix
) As ComplexMatrix
public:
ComplexMatrix^ Add(
ComplexMatrix^ addend
)
member Add :
addend : ComplexMatrix -> ComplexMatrix
Parameters
- addend
- Type: AGI.Foundation.CoordinatesComplexMatrix
The ComplexMatrix to add to this matrix.
Return Value
Type:
ComplexMatrixA
ComplexMatrix which is the sum of this matrix and the given matrix.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException |
Thrown when addend is .
|
| InvalidOperationException |
Thrown when the dimensions of addend do not match the dimensions of this ComplexMatrix.
|
See Also