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

Parameters

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

Return Value

The sum of left and right.

See Also