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. n=length(p);
  5. for i=1:n
  6. p1=[p(i) 1-p(i)];
  7. h(i)=entropy(p1);
  8. end