ComplexDivide Method (Complex, Complex) |
Returns the result of a Complex object divided by a
Complex object, x/y.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static Complex Divide(
Complex x,
Complex y
)
Public Shared Function Divide (
x As Complex,
y As Complex
) As Complex
public:
static Complex Divide(
Complex x,
Complex y
)
static member Divide :
x : Complex *
y : Complex -> Complex
Parameters
- x
- Type: Imsl.MathComplex
A Complex object representing the numerator.
- y
- Type: Imsl.MathComplex
A Complex object representing the denominator.
Return Value
Type:
Complex
A newly constructed
Complex initialized to
x/y.
See Also