www.gusucode.com > fuzzy 案例源码程序 matlab代码 > fuzzy/SpecifyFuzzyOverlapBetweenClustersExample.m

    %% Specify Fuzzy Overlap Between Clusters
%%
% Create a random data set.

% Copyright 2015 The MathWorks, Inc.

data = rand(100,2);

%%
% Specify a large fuzzy partition matrix exponent to increase the amount of
% fuzzy ovrelap between the clusters.
options = [3.0 NaN NaN 0];

%%
% Cluster the data.
[centers,U] = fcm(data,2,options);