资源简介
无线通信中,瑞利信道的仿真,考虑到了多普勒频移,还有信号的调制,编码等
代码片段和文件信息
function [xpdfxcdfx]=pdf_cdf_gen(x0 M)
up=max(x0);
dn=min(x0);
N=max(size(x0));
delta=(up-dn)/M;
pdfx=zeros(M+11);
for n=1:N
d0=floor((x0(n)-dn)/delta)+1;
pdfx(d0)=pdfx(d0)+1;
end
x=dn:delta:up;
pdfx=pdfx/(N*delta);
for m=1:M+1
cdfx(m)=sum(delta*pdfx(1:m));
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 299 2005-02-18 10:50 Rayleigh_simulation\Rayleigh simulation\pdf_cdf_gen.m
文件 7950 2005-05-16 22:10 Rayleigh_simulation\Rayleigh simulation\Rayleigh_Doppler_multiPath.m
文件 12951 2005-05-16 22:56 Rayleigh_simulation\Rayleigh simulation\Rayleigh_Doppler_singlePath.m
文件 3799 2005-02-17 16:37 Rayleigh_simulation\Rayleigh simulation\rayleigh_Filter_Model.m
文件 518 2005-03-09 10:24 Rayleigh_simulation\Rayleigh simulation\test_rayleigh_pdf.m
文件 205 2010-11-03 16:01 Rayleigh_simulation\新建 文本文档.txt
目录 0 2007-05-16 17:30 Rayleigh_simulation\Rayleigh simulation
目录 0 2010-11-03 16:01 Rayleigh_simulation
----------- --------- ---------- ----- ----
25722 8
评论
共有 条评论