Click or drag to resize

ComplexMatrixElementDivideAssign 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: 24.1.418.0 (24.1.418.0)
Syntax
public static void ElementDivideAssign(
	ComplexMatrix dividend,
	ComplexMatrix divisor,
	ComplexMatrix quotient
)

Parameters

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