English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 文章/文档 >
通讯编程文档
> 查看源码
2entropy.m
资源名称:
现代通信系统matlab版源代码.zip [点击查看]
上传用户:
loeagle
上传日期:
2013-03-02
资源大小:
1236k
文件大小:
0k
源码类别:
通讯编程文档
开发平台:
Matlab
2entropy.m:源码内容
function h=bientrop(p)
% h=bientrop(p) Returns the binary entropy function of the components
% of the vevtor p.
n=length(p);
for i=1:n
p1=[p(i) 1-p(i)];
h(i)=entropy(p1);
end