IMSL C# Numerical Library

Complex Subtraction Operator 

Returns the difference of a double and a Complex object, x-y.

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

Parameters

x
A double value.
y
A Complex object.

Return Value

A newly constructed Complex initialized to x-y.

See Also

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