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

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

Syntax

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

Parameters

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

Return Value

A newly constructed Complex initialized to x/y.

See Also