|  | DoubleComplexDivide(DoubleComplex, DoubleComplex) Method | 
            Returns the quotient of dividing one complex number by another.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplex Divide(
	DoubleComplex c1,
	DoubleComplex c2
)
Public Shared Function Divide ( 
	c1 As DoubleComplex,
	c2 As DoubleComplex
) As DoubleComplex
public:
static DoubleComplex Divide(
	DoubleComplex c1, 
	DoubleComplex c2
)
static member Divide : 
        c1 : DoubleComplex * 
        c2 : DoubleComplex -> DoubleComplex Parameters
- c1  DoubleComplex
- A complex number.
- c2  DoubleComplex
- A complex number.
Return Value
DoubleComplexThe quotient of dividing 
c1 by 
c2.
 See Also
See Also