Azzera filtri
Azzera filtri

The count of output clusters

3 visualizzazioni (ultimi 30 giorni)
Silpa K
Silpa K il 30 Gen 2020
Modificato: Cris LaPierre il 2 Feb 2020
clc;
clear;
data=xlsread('Pimaxl.xlsx');
minpts=4;
epsilon=2;
tic
idx=dbscan(asc,epsilon,minpts);
eucD = pdist(idx,'euclidean');
Z = linkage(eucD,'average');
toc
How can I show the number of output clusters of dbscan and linkage? Please help me.

Risposta accettata

Cris LaPierre
Cris LaPierre il 30 Gen 2020
Modificato: Cris LaPierre il 2 Feb 2020
I would think max(idx) should tell you the number of clusters dbscan found.
For linkage, I think this is easiest if you use the cluster function. This example comes from the documentation.
X = rand(20000,3);
Z = linkage(X,'ward');
c = cluster(Z,'Maxclust',4);
scatter3(X(:,1),X(:,2),X(:,3),10,c)
Therefore, max(c) should tell you the number of clusters.

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by