Click or drag to resize

ClusterAnalysis(DoubleMatrix) Constructor

Constructs a ClusterAnalysis instance from the given data, using the current default distance and linkage delegates.

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

Parameters

data  DoubleMatrix
A matrix of data. Each row in the matrix represents an object to be clustered.
Remarks
The default distance and linkage delegates are Distance.EuclideanFunction and Linkage.SingleFunction, unless changed using the static DefaultDistanceFunction and DefaultLinkageFunction properties.
See Also