gjj248 发表于 2012-3-24 11:33

模糊C-均值聚类程序,请大虾磅我解释下

data = rand(100,2);
plot(data(:,1), data(:,2),'o');
=fcm(data,3);
maxU = max(U);
index1 = find(U(1,:) == maxU);
index2 = find(U(2,:) == maxU);index3 = find(U(3,:) == maxU);
figure;
line(data(index1,1),data(index1,2),'linestyle','*','color','k');
line(data(index2,1),data(index2,2),'linestyle','o','color','r');
line(data(index3,1),data(index3,2),'linestyle','x','color','b');
hold on;
title('模糊C-均值聚类')
plot(center(1,1),center(1,2),'ko','markersize',10,'LineWidth',1.5);
plot(center(2,1),center(2,2),'ksquare','markersize',10,'LineWidth',1.5);
plot(center(3,1),center(3,2),'kd','markersize',10,'LineWidth',1.5);

yjhou 发表于 2012-6-13 20:53

这个看不懂,帮你增加一下人气,看看有没有懂的人来帮助你。

wllizc 发表于 2012-6-17 21:57

希望有人帮到你
页: [1]
查看完整版本: 模糊C-均值聚类程序,请大虾磅我解释下