K聚类分析源码程序 - matlab算法设计 - 谷速源码
下载频道> 资源分类> matlab源码> 算法设计> K聚类分析源码程序

标题:K聚类分析源码程序
分享到:

所属分类: 算法设计 资源类型: 文件大小: 206.73 KB 上传时间: 2016-01-30 12:33:05 下载次数: 8 资源积分:1分 提 供 者: 源码共享 K聚类分析源码程序
内容:
K聚类分析源码程序,程序员在编程的过程中可以参考学习使用,希望对IT程序员有用,此源码程序简单易懂、方便阅读,有很好的学习价值!
function I = mutualinfo(L1,L2)
%MUTUALINFO Mutual information.
% I = MUTUALINFO(L1,L2) returns the mutual information shared by two N-by-1
% integer arrays of classification data, L1 and L2. 
%
% Copyright (2009) Sandia Corporation. Under the terms of Contract 
% DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains 
% certain rights in this software.
 
N = length(L1);
k1 = unique(L1);
k2 = unique(L2);
I = 0;
 
% loop over the unique elements of L1
for i = 1:size(k1,1)
    % loop over the unique elements of L2
    for j = 1:size(k2,1)
        % the mutual probability of two classification indices occurring in
        % L1 and L2
        pij = sum((L1 == k1(i)).*(L2 == k2(j)))/N;
        % the probability of a given classification index occurring in L1
        pi = sum(L1 == k1(i))/N;
        % the probability of a given classification index occurring in L2
        pj = sum(L2 == k2(j))/N;
        if (pij > 0)
            I = I + pij*log(pij/(pi*pj));
        end
    end
end

关键词: 源码 程序

Top_arrow
回到顶部
联系方式| 版权声明| 招聘信息| 广告服务| 银行汇款| 法律顾问| 兼职技术| 付款方式| 关于我们|
网站客服网站客服 程序员兼职招聘 程序员兼职招聘
沪ICP备19040327号-3
公安备案号:沪公网安备 31011802003874号
库纳格流体控制系统(上海)有限公司 版权所有
Copyright © 1999-2014, GUSUCODE.COM, All Rights Reserved