欢迎来到源码之家!

当前位置:

> 源码分享>

MATLAB中的互信息计算

  • 软件大小: 675KB
  • 文件类型: .zip
  • 软件类别: Matlab
  • 软件语言: 简体中文
  • 更新时间: 2024-05-14
内容介绍
function MIhat = nmi( A B ) 
    %NMI Normalized mutual information
    % http://en.wikipedia.org/wiki/Mutual_information
    % http://nlp.stanford.edu/IR-book/html/htmledition/evaluation-of-clustering-1.html

    % Author: http://www.cnblogs.com/ziqiao/   [2011/12/13] 

    if length( A ) ~= length( B)
        error(‘length( A ) must == length( B)‘);
    end
    total = length(A);
    A_ids = unique(A);
    B_ids = unique(B);

    % Mutual information
    MI = 0;
    for idA = A_ids
        for idB = B_ids
             idAOccur = find( A == idA );
             idBOccur = find( B == idB );
             idABOccur = intersect(idAOccuridBOccur); 

             px = length(idAOccur)/total;
             py = length(idBOccur)/total;
             pxy = length(idABOccur)/total;

             MI = MI + pxy*log2(pxy/(px*py)+eps); % eps : the smallest positive number

        end
    end

    % Normalized Mutual information
    Hx = 0; % Entropies
    for idA = A_ids
        idAOccurCount = length( find( A == idA ) );
        Hx = Hx - (idAOccurCount/total) * log2(idAOccurCount/total + eps);
    end
    Hy = 0; % Entropies
    for idB = B_ids
        idBOccurCount = length( find( B == idB ) );
        Hy = Hy - (idBOccurCount/total) * log2(idBOccurCount/total + eps);
    end

    MIhat = 2 * MI / (Hx+Hy);
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-05-31 10:57  nmi\
     文件      263222  2009-12-18 02:54  nmi\22.bmp
     文件      263222  2009-12-18 02:54  nmi\23.bmp
     文件      263222  2009-12-18 02:54  nmi\24.bmp
     文件      263222  2009-12-18 02:58  nmi\25.bmp
     文件      263222  2009-12-18 02:57  nmi\26.bmp
     文件      263222  2009-12-18 02:57  nmi\27.bmp
     文件        1365  2015-05-26 20:27  nmi\nmi.m
     文件        1129  2015-05-26 20:33  nmi\nmimem.m
下载地址
下载错误? 【投诉报错】

MATLAB中的互信息计算

下载声明

☉ 解压密码: www.zzjlb.com。[ 如果不正确 ]请联系站长。
☉ 推荐使用 [ 迅雷] 下载,使用 [ WinRAR v5] 以上版本解压本站软件。
☉ 如果遇到不能下载的情况,请联系站长解决。
☉ 下载本站资源,如果服务器暂不能下载请过一段时间重试。
☉ 如果遇到什么问题,请加本站QQ群提出,我将尽可能解决。
☉ 本站分享的一些商业软件是供学习研究之用,如用于商业用途,请购买正版。
☉ 本站分享的资源来源互联网,版权归原作者所有。