首页 > 其他 > 详细

初步学习之FCM

时间:2015-05-11 23:40:01      阅读:392      评论:0      收藏:0      [点我收藏+]

先贴代码:

data = rand(100,2);
       [center,U,obj_fcn] = fcm(data,2);
      plot(data(:,1), data(:,2),‘o‘);
      hold on;
       maxU = max(U);
     % Find the data points with highest grade of membership in cluster 1
      index1 = find(U(1,:) == maxU);
   % Find the data points with highest grade of membership in cluster 2
      index2 = find(U(2,:) == maxU);          line(data(index1,1),data(index1,2),‘marker‘,‘*‘,‘color‘,‘g‘);
      line(data(index2,1),data(index2,2),‘marker‘,‘*‘,‘color‘,‘r‘);
       Plot the cluster centers
       plot([center([1 2],1)],[center([1 2],2)],‘*‘,‘color‘,‘k‘)
      hold off;

这是help FCM函数得到的例子。

 

技术分享

技术分享

初步学习之FCM

原文:http://www.cnblogs.com/natalie/p/4495673.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!