Click or drag to resize
ComplexDivision Operator (Double, Complex)
Returns the result of a double divided by a Complex object, x/y.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static Complex operator /(
	double x,
	Complex y
)

Parameters

x
Type: SystemDouble
A double value.
y
Type: Imsl.MathComplex
A Complex object representing the denominator.

Return Value

Type: Complex
A newly constructed Complex initialized to x/y.
See Also