  | FloatComplexDivide(Single, FloatComplex) Method | 
            Returns the quotient of dividing a real number by a complex number.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplex Divide(
	float f,
	FloatComplex c
)
Public Shared Function Divide ( 
	f As Single,
	c As FloatComplex
) As FloatComplex
public:
static FloatComplex Divide(
	float f, 
	FloatComplex c
)
static member Divide : 
        f : float32 * 
        c : FloatComplex -> FloatComplex Parameters
- f  Single
 - A real number.
 - c  FloatComplex
 - A complex number.
 
Return Value
FloatComplexThe quotient of dividing 
f by 
c.
See Also