hierClusteringAnim

Display the cluster formation of agglomerative hierarchical clustering

Contents

Syntax

Description

hierClusteringAnim(dataMat, distMat, level) shows the animation of linking 2D data points during agglomerative hierarchical clustering

Example

DS=dcData(6);
data=DS.input;
distMat=distPairwise(data);
method='single';			% 'single' or 'complete'
hcOutput=hierClustering(distMat, method);
figure; hierClusteringAnim(data, distMat, hcOutput);
figure; hierClusteringPlot(hcOutput);

See Also

hierClustering, hierClusteringPlot.


Top page   Next: hierClustering.m   Prev:hierClusteringPlot.m