Click or drag to resize

ComplexMatrix.ElementDivideAssign Method

Assigns the elements of quotient to the element-wise division of dividend divided by divisor.

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 ElementDivideAssign(
	ComplexMatrix dividend,
	ComplexMatrix divisor,
	ComplexMatrix quotient
)

Parameters

dividend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix whose elements will form the numerators.
divisor
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix whose elements will form the denominators.
quotient
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix to use to store the result of the operation.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when dividend, divisor, or quotient is null.
InvalidOperationException Thrown when the dimensions of quotient do not match the dimensions of dividend or divisor.
See Also