资源简介
关于Rayleigh和AWGN信道的BPSK仿真
代码片段和文件信息
function[p]=cm_bpske(snr_in_db)
% [p]=cm_bpske(snr_in_db)
% cm_bpske finds the probability of error for the given value of snr_in_db
N=5000;
E=1; %energy per symbol
snr=10^(snr_in_db/10); %signal to noise ratio
sgma=E/sqrt(snr*2); %noise variance
%generation of data source
for i=1:N
temp=rand;
if(temp<0.5)
dsource(i)=0;
else
dsource(i)=1;
end
end
%detection and the probability of errror calculation
numofbiterror=0;
for i=1:N
%received signal at the detector for the ith symbol is:
if (dsource(i)==0)
r0=E+gngauss(sgma);
r1=gngauss(sgma);
else
r1=E+gngauss(sgma);
r0=gngauss(sgma);
end
% the detector is:
if(r0>r1)
decis=0;
else
decis=1;
end
%increment the error counterif the decision is not correct
if (decis~=dsource(i))
numofbiterror=numofbiterror+1;
end
end
p=numofbiterror/N;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 735 2003-08-10 12:02 bpsk\AWGN\trng_guass.m
文件 711 2003-08-10 14:12 bpsk\AWGN\gngauss.m
文件 1048 2003-08-10 12:05 bpsk\AWGN\cm_bpske.m
..AD... 0 2003-08-11 12:19 bpsk\AWGN
文件 590 2003-08-11 10:45 bpsk\rayleigh\gnray.m
文件 740 2003-08-11 10:32 bpsk\rayleigh\trng_ray.m
文件 1014 2003-08-11 00:19 bpsk\rayleigh\cm_bpske.m
..AD... 0 2003-08-11 12:19 bpsk\rayleigh
..AD... 0 2003-08-11 12:19 bpsk
----------- --------- ---------- ----- ----
4838 9
- 上一篇:基于OPNET的无线传感器网络仿真
- 下一篇:光线跟踪算法-Phong
相关资源
- LDPC码在BPSK调制下的通过AWGN 信道下的
- v2v信道仿真与特性研究
- 论文研究-AWGN信道中一种改进OFDM系统
- rayleigh_waves_lzm
- 基于SystemView的CDMA_IS_95A_前向业务信道
- Turbo码在AWGN信道下的仿真
- Turbo码在AWGN信道中的性能仿真
- BER of BPSK/QPSK/16QAM in AWGN
- AWGN信道中BPSK调制系统的BER 仿真计算
- 瑞丽衰落信道仿真
- MIMO-OFDM信道仿真
- ofdm-rayleigh衰落信道仿真程序
- ofdm衰落信道仿真
- 用c写的8psk调制通过高斯信道的源程序
- rayleigh fading simulation
- OPNET中802.11信道模型
- Rayleigh信道下BPSK信号2收1发最大比合并
评论
共有 条评论