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

📄 entropy.m

📁 计算两个离散时间序列变量间的信息熵和互信息
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -