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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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  : ComplexMatrixParameters
- 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