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

通讯编程文档

开发平台:

Matlab

  1. % MATLAB script for Illustrative Problem 3, Chapter 1.
  2. echo on
  3. fnct='normal';
  4. a=-6;
  5. b=6;
  6. n=24;
  7. tol=0.1;
  8. xx=fseries(fnct,a,b,n,tol,0,1);
  9. xx1=xx(n+1:-1:2);
  10. xx1=[conj(xx1),xx];
  11. absxx1=abs(xx1);
  12. pause % Press any key to see a plot of the magnitude.
  13. n1=[-n:n];
  14. stem(n1,absxx1)
  15. title('The Discrete Magnitude Spectrum')
  16. phasexx1=angle(xx1);
  17. pause % Press any key to see a plot of the phase.
  18. stem(n1,phasexx1)
  19. title('The Discrete Phase Spectrum')