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