Click or drag to resize

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.1.418.0 (24.1.418.0)
Syntax
public static ComplexMatrix operator +(
	ComplexMatrix leftAddend,
	ComplexMatrix rightAddend
)

Parameters

leftAddend
Type: AGI.Foundation.CoordinatesComplexMatrix
The first ComplexMatrix to sum.
rightAddend
Type: AGI.Foundation.CoordinatesComplexMatrix
The second ComplexMatrix to sum.

Return Value

Type: ComplexMatrix
A ComplexMatrix which is the sum of the two given matrices.
Exceptions
ExceptionCondition
InvalidOperationException Thrown when the dimensions of leftAddend do not match the dimensions of rightAddend.
See Also