Entropy2.m
上传用户:loeagle
上传日期:2013-03-02
资源大小:1236k
文件大小:0k
源码类别:

通讯编程文档

开发平台:

Matlab

  1. function h=entropy2(p)
  2. % h=entropy2(p) Returns the binary entropy function of the components 
  3. % of the vevtor p.
  4. h=-p.*log2(p)-(1-p).*log2(1-p);