Click or drag to resize

KMeansClustering(DoubleMatrix) Constructor

Constructs a KMeansClustering instance from the given data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public KMeansClustering(
	DoubleMatrix data
)

Parameters

data  DoubleMatrix
A matrix of data. Each row in the matrix represents an object to be clustered.
Remarks
The default maximum number of iterations is used. Iteration stops when either the clustering stabilizes, or the maximum number of iterations is reached.
See Also