フィルターのクリア

The Graph of Clustering Looks Messy, Why?

1 回表示 (過去 30 日間)
Alvi Syahrin
Alvi Syahrin 2013 年 5 月 10 日
I'm working with k-means. And this is the graph of mine.
It looks messy. The red and blue are mixed. What do you think? It is because the file I used? Or the clustering isn't working properly?
Here is my code...
load cobat.txt
k=input('Enter a number: ');
% CLUSTER (PUSH BUTTON)
[g c] = kmeans(cobat,k,'dist','SqEuclidean');
y = [cobat g]
% SHOW THE GRAPHIC
%# show points and clusters (color-coded)
clr = lines(k);
figure, hold on
scatter3(cobat(:,1), cobat(:,2), cobat(:,3), 36, clr(g,:), 'Marker','.')
scatter3(c(:,1), c(:,2), c(:,3), 100, clr, 'Marker','o', 'LineWidth',3)
hold off
view(3), axis vis3d, box on, rotate3d on
xlabel('x'), ylabel('y'), zlabel('z')

採用された回答

Image Analyst
Image Analyst 2013 年 5 月 10 日
Maybe you just need to rotate the volume so that you're looking at it from a better viewpoint - one that doesn't have so many things overlapping.

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by