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

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static Complex Divide(
	Complex x,
	double y
)
Visual Basic (Declaration)
Public Shared Function Divide ( _
	x As Complex, _
	y As Double _
) As Complex
Visual C++
public:
static Complex Divide(
	Complex x, 
	double y
)

Parameters

x
Type: Imsl.Math..::.Complex
A Complex object representing the numerator.
y
Type: System..::.Double
A double representing the denominator.

Return Value

A newly constructed Complex initialized to x/y.

See Also