Returns the quotient of dividing a real number by a complex number.

Namespace: CenterSpace.NMath.Core
Assembly: NMathPremium (in NMathPremium.dll) Version: 5.3.0.0

Syntax

C#
public static DoubleComplex Divide(
	double d,
	DoubleComplex c
)
Visual Basic
Public Shared Function Divide ( _
	d As Double, _
	c As DoubleComplex _
) As DoubleComplex
Visual C++
public:
static DoubleComplex Divide(
	double d, 
	DoubleComplex c
)

Parameters

d
Type: System..::..Double
A real number.
c
Type: CenterSpace.NMath.Core..::..DoubleComplex
A complex number.

Return Value

The quotient of dividing f by c.

See Also