IMSL C# Numerical Library

Complex Division Operator 

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

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

Parameters

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

Return Value

A newly constructed Complex initialized to x/y.

See Also

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