Compares a DoubleComplex number and a real number for equality.

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

Syntax

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

Parameters

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

Return Value

true if the two numbers are equal; otherwise false.