Click or drag to resize

ClusterAnalysisUpdate(DataFrame, DistanceFunction, LinkageFunction) Method

Clusters the given data, using the given distance and linkage delegates.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Update(
	DataFrame data,
	DistanceFunction distance,
	LinkageFunction linkage
)

Parameters

data  DataFrame
A matrix of data. Each row in the matrix represents an object to be clustered.
distance  DistanceFunction
A delegate for computing the distance between individual objects.
linkage  LinkageFunction
A delegate for computing the distance between clusters.
Remarks
DistanceFunction and LinkageFunction properties on this object are set with the given distance and linkage delegates.
See Also