Compares a complex number and a real number for equality.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator ==(
T a,
Complex<T> z
)
Public Shared Operator = (
a As T,
z As Complex(Of T)
) As Boolean
public:
static bool operator ==(
T a,
Complex<T> z
)
static let inline (=)
a : 'T *
z : Complex<'T> : bool
Parameters
- a
- Type: T
The real number. - z
- Type: Extreme.MathematicsComplexT
The complex number.
Return Value
Type:
Boolean if the two numbers are
equal; otherwise
.
Reference