Anyone an expert in K-means clustering?

1 vue (au cours des 30 derniers jours)
Z
Z le 27 Juin 2013
I have a really large matrix and I have two different classes with many different parameters involved. When I try to use K-means clustering, I get a weird graph with like hundreds of vertical blue lines. Why is this?
X = mydata(1:1016,1);
IDX = kmeans(X,2);
plot(IDX)
Thanks in advance!

Réponse acceptée

Walter Roberson
Walter Roberson le 27 Juin 2013
Your plot axes data area is probably not at least 1016 pixels wide, so multiple x values are being aliased to the same horizontal distance from the axis. As you only have two distinct output values, each time you have that kind of aliasing and the two values involved differ, you will get a vertical line. If you zoom in the vertical lines will disappear.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by