ComplexInequality Operator |
Tests the inequality of two complex numbers.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static bool operator !=(
Complex z1,
Complex z2
)
Public Shared Operator <> (
z1 As Complex,
z2 As Complex
) As Boolean
public:
static bool operator !=(
Complex z1,
Complex z2
)
static let inline (<>)
z1 : Complex *
z2 : Complex : bool
Parameters
- z1
- Type: Meta.NumericsComplex
The first complex number. - z2
- Type: Meta.NumericsComplex
The second complex number.
Return Value
Type:
BooleanFalse if the two complex numbers are equal, otherwise true.
See Also