Click or drag to resize

ComplexMatrixElementDivide 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: 24.1.418.0 (24.1.418.0)
Syntax
public static ComplexMatrix ElementDivide(
	ComplexMatrix dividend,
	ComplexMatrix divisor
)

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.

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