|  | DoubleComplexAdd(Double, DoubleComplex) Method | 
            Returns the sum of a real and a complex number.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleComplex Add(
	double d,
	DoubleComplex c
)
Public Shared Function Add ( 
	d As Double,
	c As DoubleComplex
) As DoubleComplex
public:
static DoubleComplex Add(
	double d, 
	DoubleComplex c
)
static member Add : 
        d : float * 
        c : DoubleComplex -> DoubleComplex Parameters
- d  Double
- A real number.
- c  DoubleComplex
- A complex number.
Return Value
DoubleComplexThe sum of 
f and 
c.
 See Also
See Also