  | ClusterAnalysisUpdate(DataFrame, LinkageFunction) Method | 
            Clusters the given data, using the current distance delegate and the
            given linkage delegate.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void Update(
	DataFrame data,
	LinkageFunction linkage
)
Public Sub Update ( 
	data As DataFrame,
	linkage As LinkageFunction
)
public:
void Update(
	DataFrame^ data, 
	LinkageFunction^ linkage
)
member Update : 
        data : DataFrame * 
        linkage : LinkageFunction -> unit Parameters
- data  DataFrame
 - 
            A matrix of data. Each row in the matrix represents an object
            to be clustered.
            
 - linkage  LinkageFunction
 - 
            A delegate for computing the distance between clusters.
            
 
Remarks
            The LinkageFunction property on this object is set with the given 
            linkage delegate.
            
See Also