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