entropy.m

来自「贝叶斯(Bayesion)机器学习相互信息。用于求取熵、联合熵等。改进后可用于随」· M 代码 · 共 41 行

M
41
字号
function h = entropy(vec1)%=========================================================%%This is a prog in the MutualInfo 0.9 package written by % Hanchuan Peng.%%Disclaimer: The author of program is Hanchuan Peng%      at <penghanchuan@yahoo.com> and <phc@cbmv.jhu.edu>.%%The CopyRight is reserved by the author.%%Last modification: April/19/2002%%========================================================%% h = entropy(vec1)% calculate the entropy of a variable vec1%% demo: %  a=[1 2 1 2 1]';b=[2 1 2 1 1]';%  fprintf('entropy(a) = %d\n',entropy(a));%% the same as entropycond(vec1)%% By Hanchuan Peng, April/2002%if nargin<1,  disp('Usage: h = entropy(vec1).');  h = -1;else,  [p1] = estpa(vec1);  h = estentropy(p1);end;

⌨️ 快捷键说明

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