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

传真(Fax)编程

开发平台:

Matlab

  1. % use this program to reproduce Fig. 7.14 of text
  2. clear all
  3. eps = 1.5e-5;
  4. t = 0:0.001:.5;                 
  5. y = chirp(t,0,.25,20);
  6. figure(1)
  7. plot(t,y);
  8. yfft = fft(y,512) ;
  9. ycomp = fftshift(abs(ifft(yfft .* conj(yfft))));
  10. maxval = max (ycomp);
  11. ycomp = eps + ycomp ./ maxval; 
  12. figure(1)
  13. del = .5 /512.;
  14. tt = 0:del:.5-eps;
  15. plot (tt,ycomp,'k')
  16. axis tight
  17. xlabel ('Relative delay - seconds');
  18. ylabel('Normalized compressed pulse')
  19. grid
  20. %change center frequency
  21. y1 = chirp (t,0,.25,21);
  22. y1fft = fft(y1,512);
  23. y1comp = fftshift(abs(ifft(y1fft .* conj(yfft))));
  24. maxval = max (y1comp);
  25. y1comp = eps + y1comp ./ maxval; 
  26. figure(2)
  27. plot (tt,y1comp,'k')
  28. axis tight
  29. xlabel ('Relative delay - seconds');
  30. ylabel('Normalized compressed pulse')
  31. grid
  32. %change pulse width
  33. t = 0:0.001:.45;                 
  34. y2 = chirp (t,0,.225,20);
  35. y2fft = fft(y2,512);
  36. y2comp = fftshift(abs(ifft(y2fft .* conj(yfft))));
  37. maxval = max (y2comp);
  38. y2comp = eps + y2comp ./ maxval; 
  39. figure(3)
  40. plot (tt,y2comp,'k')
  41. axis tight
  42. xlabel ('Relative delay - seconds');
  43. ylabel('Normalized compressed pulse')
  44. grid