Click or drag to resize

ComplexMatrixAddAssign 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: 24.1.418.0 (24.1.418.0)
Syntax
public static void AddAssign(
	ComplexMatrix leftAddend,
	ComplexMatrix rightAddend,
	ComplexMatrix sum
)

Parameters

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