Returns the sum of a real and a complex number.

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

Syntax

C#
public static FloatComplex Add(
	float f,
	FloatComplex c
)
Visual Basic (Declaration)
Public Shared Function Add ( _
	f As Single, _
	c As FloatComplex _
) As FloatComplex
Visual C++
public:
static FloatComplex Add(
	float f, 
	FloatComplex c
)

Parameters

f
Type: System..::.Single
A real number.
c
Type: CenterSpace.NMath.Core..::.FloatComplex
A complex number.

Return Value

The sum of f and c.

See Also