Class ClusterSet represents a collection of objects assigned to a finite number of clusters.

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

Syntax

C#
[SerializableAttribute]
public class ClusterSet : IEnumerable, ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class ClusterSet _
	Implements IEnumerable, ICloneable
Visual C++
[SerializableAttribute]
public ref class ClusterSet : IEnumerable, 
	ICloneable

Remarks

Instances of class ClusterSet are returned by the ClusterAnalysis.CutTree() method and cannot be constructed independently.
The Clusters property returns an array of integers that identifies the cluster into which each object was grouped. Cluster numbers are arbitrary, and range from 0 to NumberOfClusters - 1. The indexer gets the cluster to which a given object is assigned. The Cluster() method returns the objects assigned to a given cluster.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Stats..::.ClusterSet

See Also