|  | KMeansClusteringCluster(Int32) Method | 
            Clusters the data into the specified number of clusters.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic ClusterSet Cluster(
	int k
)
Public Function Cluster ( 
	k As Integer
) As ClusterSet
public:
ClusterSet^ Cluster(
	int k
)
member Cluster : 
        k : int -> ClusterSet Parameters
- k  Int32
- The number of clusters to form.
Return Value
ClusterSet
            A ClusterSet that identifies the cluster into which each
            object was grouped. Cluster numbers are based on row indices in
            
this.Data and 
this.Centers.
            
 Exceptions
Exceptions| Exception | Condition | 
|---|
| InvalidArgumentException | Thrown if k is less than one or greater than the number of objects (this.N). | 
| NMathException | Thrown if an empty cluster is encountered. Re-cluster with different starting centers. | 
 Remarks
Remarks
            A random set of distinct rows in this.Data are chosen as the initial centers.
            
 See Also
See Also