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

通讯编程文档

开发平台:

Matlab

  1. % The MATLAB script that generates the probability of error versus the signal-to-noise ratio.
  2. initial_snr=0;
  3. final_snr=15;
  4. snr_step=0.25; 
  5. snr_in_dB=initial_snr:snr_step:final_snr;
  6. for i=1:length(snr_in_dB),
  7.   snr=10^(snr_in_dB(i)/10);         
  8.   Pe(i)=Qfunct(sqrt(snr));
  9.   echo off;
  10. end;
  11. echo on;
  12. semilogy(snr_in_dB,Pe);