Click or drag to resize

ComplexMatrix.ElementDivide Method

Creates a new ComplexMatrix which is the element-by-element division 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 ElementDivide(
	ComplexMatrix dividend,
	ComplexMatrix divisor
)

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.

Return Value

Type: ComplexMatrix
A ComplexMatrix which equals the element division of the two given matrices.
Exceptions
ExceptionCondition
InvalidOperationException Thrown when the dimensions of dividend do not match the dimensions of divisor.
See Also