Click or drag to resize

ComplexMatrix.AddAssign Method

Assigns the elements of sum to the element-wise addition of leftAddend and rightAddend.

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 void AddAssign(
	ComplexMatrix leftAddend,
	ComplexMatrix rightAddend,
	ComplexMatrix sum
)

Parameters

leftAddend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The first ComplexMatrix to sum.
rightAddend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The second ComplexMatrix to sum.
sum
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix to use to store the result of the operation.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when leftAddend, rightAddend, or sum is null.
InvalidOperationException Thrown when the dimensions of sum do not match the dimensions of leftAddend or rightAddend.
See Also