• 大小: 20KB
    文件类型: .tar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: 其他
  • 标签: k-means  

资源简介

Charles Elkan2003年发表的《using the triangle inequality to accelerate k-means》的快速k-means算法的代码

资源截图

代码片段和文件信息

function centdist = alldist(centers)
% output: matrix of all pairwise distances
% input: data points (centers)

k = size(centers1);
centdist = zeros(kk);
for j = 1:k
    centdist(1:j-1j) = calcdist(centers(1:j-1:)centers(j:));
end
centdist = centdist+centdist‘;

评论

共有 条评论