Returns the quotient of dividing one complex number by another.

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

Syntax

C#
public static FloatComplex Divide(
	FloatComplex c1,
	FloatComplex c2
)
Visual Basic (Declaration)
Public Shared Function Divide ( _
	c1 As FloatComplex, _
	c2 As FloatComplex _
) As FloatComplex
Visual C++
public:
static FloatComplex Divide(
	FloatComplex c1, 
	FloatComplex c2
)

Parameters

c1
Type: CenterSpace.NMath.Core..::.FloatComplex
A complex number.
c2
Type: CenterSpace.NMath.Core..::.FloatComplex
A complex number.

Return Value

The quotient of dividing c1 by c2.

See Also