Tests for inequality of two subsets. Two subsets are unequal if they have different lengths or their indices are not all equal.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public static bool operator !=(
	Subset x,
	Subset y
)
Visual Basic (Declaration)
Public Shared Operator <> ( _
	x As Subset, _
	y As Subset _
) As Boolean
Visual C++
public:
static bool operator !=(
	Subset^ x, 
	Subset^ y
)

Parameters

x
Type: CenterSpace.NMath.Stats..::.Subset
The left-hand subset.
y
Type: CenterSpace.NMath.Stats..::.Subset
The right-hand subset.

Return Value

True if the subsets are of different lengths, contain different indices, or are not both null; otherwise, false.

See Also