|  | ClusterSetInequality Operator | 
            Tests for inequality of two cluster sets. Two cluster sets are unequal
            if they have different numbers of objects or the objects are assigned
            to different clusters.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static bool operator !=(
	ClusterSet x,
	ClusterSet y
)
Public Shared Operator <> ( 
	x As ClusterSet,
	y As ClusterSet
) As Boolean
public:
static bool operator !=(
	ClusterSet^ x, 
	ClusterSet^ y
)
static let inline (<>)
        x : ClusterSet * 
        y : ClusterSet  : boolParameters
- x  ClusterSet
- The left-hand cluster set.
- y  ClusterSet
- The right-hand cluster set.
Return Value
BooleanTrue if the two cluster sets have different numbers of objects or
            the objects are assigned to different clusters, or are not both 
null;
            otherwise, 
false.
            
 See Also
See Also