ComplexSubtract Method (Double, Complex) |
Returns the difference of a double and a Complex
object, x-y.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static Complex Subtract(
double x,
Complex y
)
Public Shared Function Subtract (
x As Double,
y As Complex
) As Complex
public:
static Complex Subtract(
double x,
Complex y
)
static member Subtract :
x : float *
y : Complex -> Complex
Parameters
- x
- Type: SystemDouble
A double value.
- y
- Type: Imsl.MathComplex
A Complex object.
Return Value
Type:
Complex
A newly constructed
Complex initialized to
x-y.
See Also