Anyone an expert in K-means clustering?
1 view (last 30 days)
Show older comments
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!
Accepted Answer
Walter Roberson
on 27 Jun 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.
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!