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

📄 jointentropy.m

📁 mRMR(min-redundancy max-relevance)的matlab程序
💻 M
字号:
function h = jointentropy(vec1,vec2)%=========================================================%%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 = jointentropy(vec1,vec2)% calculate the joint entropy of two variables%% when only one variable presents, this function equals entropy(vec1)%% demo: %  a=[1 2 1 2 1]';b=[2 1 2 1 1]';%  fprintf('jointentropy(a,b)= %d \n',jointentropy(a,b));%% By Hanchuan Peng, April/2002%if nargin<1,  disp('Usage: h = condentropy(vec1,<vec2>).');  h = -1;elseif nargin<2,  [p1] = estpa(vec1);  h = estentropy(p1);else,  [p12] = estpab(vec1,vec2);  h = estjointentropy(p12);end;

⌨️ 快捷键说明

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