Clusters the given data, using the current distance delegate and the given linkage delegate.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public void Update(
	DataFrame data,
	Linkage..::.Function linkage
)
Visual Basic (Declaration)
Public Sub Update ( _
	data As DataFrame, _
	linkage As Linkage..::.Function _
)
Visual C++
public:
void Update(
	DataFrame^ data, 
	Linkage..::.Function^ linkage
)

Parameters

data
Type: CenterSpace.NMath.Stats..::.DataFrame
A matrix of data. Each row in the matrix represents an object to be clustered.
linkage
Type: CenterSpace.NMath.Stats..::.Linkage..::.Function
A delegate for computing the distance between clusters.

Remarks

The LinkageFunction property on this object is set with the given linkage delegate.

See Also