⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clustertest.m

📁 MATLAB编写的一种模式识别里的重要的模糊聚类方法K-means算法的matlab程序.
💻 M
字号:
function [n,m,v] = clustertest(nr);% CLUSTERTEST : test clusterstats with really simple distribution% [n,m,v] = clustertest(n)%	nr - number of samles% Copyright (c) 1995 Frank Dellaert% All rights Reserveddata = zeros(3,nr);data(1,:) = randn(1,nr);data(2,:) = randn(1,nr)*2+1;data(3,:) = randn(1,nr)*3+2;datac = ones(1,nr);[n,m,v] = clusterstats(data,datac);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -