IMSL C# Numerical Library

Complex Division Operator 

Returns the result of a double divided by a Complex object, x/y.

public static Complex operator /(
   double x,
   Complex y
);

Parameters

x
A double value.
y
A Complex object representing the denominator.

Return Value

A newly constructed Complex initialized to x/y.

See Also

Complex Class | Imsl.Math Namespace | ComplexDivision Operator Overload List