Click or drag to resize

ComplexMatrix.Add 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: 25.1.421.0 (25.1.421.0)
Syntax
public static ComplexMatrix Add(
	ComplexMatrix leftAddend,
	ComplexMatrix rightAddend
)

Parameters

leftAddend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The first ComplexMatrix to sum.
rightAddend
Type: AGI.Foundation.Coordinates.ComplexMatrix
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