IMSL C# Numerical Library

Complex Division Operator

Returns the value of one number divided by another number.

Overload List

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

public static Complex Division Operator(Complex,Complex);

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

public static Complex Division Operator(Complex,double);

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

public static Complex Division Operator(double,Complex);

See Also

Complex Class | Imsl.Math Namespace