Click or drag to resize

KMeansClusteringCluster(DoubleMatrix) Method

Clusters the data into the specified number of clusters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public ClusterSet Cluster(
	DoubleMatrix centers
)

Parameters

centers  DoubleMatrix
A matrix of initial cluster centers. K is inferred from the number of rows in the matrix.

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
ExceptionCondition
InvalidArgumentException Thrown if the number of cluster centers is less than one or greater than the number of data points (this.N), or if the dimensionality of the centers is not equal to the dimensionality of the data points.
NMathException Thrown if an empty cluster is encountered. Re-cluster with different starting centers.
See Also