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

传真(Fax)编程

开发平台:

Matlab

  1. % Use this program to reproduce Fig. 6.5 of tetxt
  2. close all
  3. clear all
  4. eps = 0.0001;
  5. taup = 1.;
  6. b = 5.;
  7. up_down = 1.;
  8. x = lfm_ambg(taup, b, up_down);
  9. taux = -1.1*taup:.035:1.1*taup;
  10. fdy = -1.5*b:.035:1.5*b;
  11. figure(1)
  12. mesh(taux,fdy,sqrt(x))
  13. xlabel ('Delay - seconds')
  14. ylabel ('Doppler - Hz')
  15. zlabel ('Uncertainty function')
  16. axis tight
  17. figure(2)
  18. contour(taux,fdy,sqrt(x))
  19. xlabel ('Delay - seconds')
  20. ylabel ('Doppler - Hz')
  21. grid
  22. axis tight
  23. figure(3)
  24. mesh(taux,fdy,x)
  25. xlabel ('Delay - seconds')
  26. ylabel ('Doppler - Hz')
  27. zlabel ('Ambiguity function')
  28. axis tight
  29. figure(4)
  30. contour(taux,fdy,x)
  31. xlabel ('Delay - seconds')
  32. ylabel ('Doppler - Hz')
  33. grid
  34. axis tight