Adds a DoubleComplex number to a real number.

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Shared Operator + ( _
	z As DoubleComplex, _
	a As Double _
) As DoubleComplex
C#
public static DoubleComplex operator + (
	DoubleComplex z,
	double a
)
C++
public:
static DoubleComplex operator + (
	DoubleComplex z, 
	double a
)

Parameters

z (Extreme.Mathematics.DoubleComplex)
A DoubleComplex number.
a (System.Double)
A real number number.

Return Value

A DoubleComplex number that is the sum of the two operands.

Remarks

If you are using a language that does not support operator overloading, use the static (Shared in Visual Basic) Add(DoubleComplex, DoubleComplex) method instead.

See Also