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

📄 entropy2.m

📁 matlab的steel金字塔小波分解源代码
💻 M
字号:
% E = ENTROPY2(MTX,BINSIZE) % % Compute the first-order sample entropy of MTX.  Samples of VEC are% first discretized.  Optional argument BINSIZE controls the% discretization, and defaults to 256/(max(VEC)-min(VEC)).%% NOTE: This is a heavily  biased estimate of entropy when you% don't have much data.% Eero Simoncelli, 6/96.function res = entropy2(mtx,binsize)%% Ensure it's a vector, not a matrix.vec = mtx(:);[mn,mx] = range2(vec);if (exist('binsize') == 1)  nbins = max((mx-mn)/binsize, 1);else  nbins = 256;end  [bincount,bins] = histo(vec,nbins);%% Collect non-zero bins:H = bincount(find(bincount));H = H/sum(H);res = -sum(H .* log2(H));

⌨️ 快捷键说明

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