代码搜索:Entropy
找到约 1,851 项符合「Entropy」的源代码
代码结果 1,851
www.eeworm.com/read/197268/8007693
cc entropy.cc
/*---------------------------------------------------------------------------*/
// Baseline Wavelet Transform Coder Construction Kit
//
// Geoff Davis
// gdavis@cs.dartmouth.edu
// http://www.cs.dartm
www.eeworm.com/read/397112/8067024
m entropy.m
function h = gonientropy(v)
values = unique(v);
numValues = numel(v);
h=0;
for i = values'
p = numel(find(v==i))/numValues;
h = h + p*log2(p);
end
h=-h;
www.eeworm.com/read/296909/8072806
m entropy.m
function H = entropy(px)
% ENTROPY Computes the entropy of discrete r.v. with pmf px.
%
% ENTROPY computes the entropy of a discrete random variable
% with probability mass function p_x.
www.eeworm.com/read/296483/8100184
h entropy.h
// $Archive:: /SafeTP/entropy.h $
// $Date: 1999/07/14 13:16:40 $
// $Revision: 1.5 $
// Description: function that returns some entropy; platform-specific i
www.eeworm.com/read/296483/8100484
cpp entropy.cpp
// $Archive:: /SafeTP/entropy.cpp $
// $Date: 1999/07/14 13:16:40 $
// $Revision: 1.12 $
// Description: function that returns some entropy; platform-specific
www.eeworm.com/read/195907/8124109
hh entropy.hh
/*---------------------------------------------------------------------------*/
// Baseline Wavelet Transform Coder Construction Kit
//
// Geoff Davis
// gdavis@cs.dartmouth.edu
// http://www.cs.dartm
www.eeworm.com/read/195907/8124123
cc entropy.cc
/*---------------------------------------------------------------------------*/
// Baseline Wavelet Transform Coder Construction Kit
//
// Geoff Davis
// gdavis@cs.dartmouth.edu
// http://www.cs.dartm
www.eeworm.com/read/244937/12831102
m entropy.m
function h=entropy(p)
% H=ENTROPY(P) returns the entropy function of
% the probability vector p.
if length(find(p
www.eeworm.com/read/244800/12843117
m entropy.m
function e = entropy(x, y)
%ENTROPY Computes entropy e for vector x or joint entropy for (x, y).
%
% e = entropy(x)
% e = entropy(x, y)
%
% Computes entropy e for vector x or joint entropy for (x,
www.eeworm.com/read/143498/12870720