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 DoubleComplex operator /(
	DoubleComplex left,
	DoubleComplex right
)
Visual Basic (Declaration)
Public Shared Operator / ( _
	left As DoubleComplex, _
	right As DoubleComplex _
) As DoubleComplex
Visual C++
public:
static DoubleComplex operator /(
	DoubleComplex left, 
	DoubleComplex right
)

Parameters

left
Type: CenterSpace.NMath.Core..::.DoubleComplex
A complex number.
right
Type: CenterSpace.NMath.Core..::.DoubleComplex
A complex number.

Return Value

The quotient of dividing left by right.

See Also