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

通讯编程文档

开发平台:

Matlab

  1. % MATLAB script for Illustrated Problem 5.8.
  2.  
  3. echo on
  4. SNRindB1=0:1:12;   
  5. SNRindB2=0:0.1:12;
  6. for i=1:length(SNRindB1),
  7.   % simulated error rate 
  8.   smld_err_prb(i)=smldPe58(SNRindB1(i));    
  9.   echo off;
  10. end;
  11. echo on;
  12. for i=1:length(SNRindB2),
  13.   % signal-to-noise ratio
  14.   SNR_per_bit=exp(SNRindB2(i)*log(10)/10);  
  15.   % theoretical error rate
  16.   theo_err_prb(i)=(3/2)*Qfunct(sqrt((4/5)*SNR_per_bit));  
  17.   echo off;
  18. end;
  19. echo on;
  20. % Plotting commands follow.
  21. semilogy(SNRindB1,smld_err_prb,'*');
  22. hold
  23. semilogy(SNRindB2,theo_err_prb);