Click or drag to resize

ClusterSetEquality Operator

Tests for equality of two cluster sets. Two clusters sets are equal if they have the same number of objects and all objects are assigned to the same clusters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static bool operator ==(
	ClusterSet x,
	ClusterSet y
)

Parameters

x  ClusterSet
The left-hand cluster set.
y  ClusterSet
The right-hand cluster set.

Return Value

Boolean
True if the cluster sets have the same number of objects and all objects are assigned to the same clusters, or if both cluster sets are null; otherwise, false.
See Also