• 大小: 5KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-08-09
  • 语言: Matlab
  • 标签: 聚类  GK  

资源简介

基于matlab软件设计的模糊GK聚类算法,进行数据的聚类分析

资源截图

代码片段和文件信息

clear all
close all
path(path‘..\..\..\FUZZCLUST‘)
%the data
load motorcycle.txt
data.X = motorcycle(:[1 2]);

%parameters
param.c=4;
param.m=2;
param.e=1e-6;
param.ro=ones(1param.c);
param.val=1;
%normalization
data=clust_normalize(data‘range‘);
%clustering
result = FCMclust(dataparam);
plot(data.X(:1)data.X(:2)‘b.‘result.cluster.v(:1)result.cluster.v(:2)‘ro‘);
hold on
%draw contour-map
new.X=data.X;
eval=clusteval(newresultparam);
%validation
result = validity(resultdataparam);
result.validity

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        542  2005-03-22 16:20  clusteringexamples\motorcycle\FCMcall.m

     文件        589  2005-03-22 16:28  clusteringexamples\motorcycle\GGcall.m

     文件        543  2005-03-22 16:26  clusteringexamples\motorcycle\GKcall.m

     文件        408  2005-03-22 16:24  clusteringexamples\motorcycle\Kmeanscall.m

     文件        409  2005-03-22 16:29  clusteringexamples\motorcycle\Kmedoidcall.m

     文件       8086  2003-04-25 16:31  clusteringexamples\motorcycle\MotorCycle.txt

     文件        499  2004-05-19 21:07  clusteringexamples\synthetic\FCMcall.m

     文件        598  2004-05-19 21:07  clusteringexamples\synthetic\GGcall.m

     文件        498  2004-05-19 21:08  clusteringexamples\synthetic\GKcall.m

     文件        536  2004-05-17 09:29  clusteringexamples\synthetic\Kmeanscall.m

     文件        508  2004-05-17 09:30  clusteringexamples\synthetic\Kmedoidcall.m

     文件        381  2004-03-14 19:08  clusteringexamples\synthetic\nDexample.m

     目录          0  2005-04-19 11:23  clusteringexamples\motorcycle

     目录          0  2005-04-19 11:23  clusteringexamples\synthetic

     目录          0  2005-04-19 11:23  clusteringexamples

----------- ---------  ---------- -----  ----

                13597                    15


评论

共有 条评论