  | ClusterAnalysisUpdate(DataFrame, DistanceFunction) Method | 
            Clusters the given data, using the given distance delegate and the
            current linkage delegate.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void Update(
	DataFrame data,
	DistanceFunction distance
)
Public Sub Update ( 
	data As DataFrame,
	distance As DistanceFunction
)
public:
void Update(
	DataFrame^ data, 
	DistanceFunction^ distance
)
member Update : 
        data : DataFrame * 
        distance : DistanceFunction -> unit 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.
            
 
Remarks
            The DistanceFunction property on this object is set with
            the given distance delegate.
            
See Also