fig4_16.m
上传用户:szahd2008
上传日期:2020-09-25
资源大小:1275k
文件大小:0k
源码类别:

传真(Fax)编程

开发平台:

Matlab

  1. % Use this program to reproduce Fig. 4.16 of text
  2. % clear all
  3. % close all
  4. index = 0.;
  5. for pd = 0.01:.05:1
  6.     index = index + 1;
  7.     [Lf,Pd_Sw5] = fluct_loss(pd, 1e-9,1,1);
  8.     Lf1(index) = Lf;
  9.     [Lf,Pd_Sw5] = fluct_loss(pd, 1e-9,1,4);
  10.     Lf4(index) = Lf;
  11.     
  12. end
  13. pd = 0.01:.05:1;
  14. figure (3)
  15. plot(pd, Lf1, 'k',pd, Lf4,'K:')
  16. xlabel('Probability of detection')
  17. ylabel('Fluctuation loss - dB')
  18. legend('Swerling I & II','Swerling III & IV')
  19. title('Pfa=1e-9, np=1')
  20. grid