Coeficientes de la serie de Fourier conforme T tiende al infinito.

  1. import numpy as np
  2. import pylab as pl
  3. T1=1
  4. T=4*T1
  5. w0=2*np.pi/T
  6. k=np.arange(-40*w0,40*w0,w0)
  7. ak=(2.0*T1)*np.sinc(k)
  8. pl.subplot(4,1,1)
  9. pl.stem(k,ak*T)
  10. pl.hold(True)
  11. ke=np.arange(-40*w0,40*w0,w0/10)
  12. ake=(2.0*T1)*np.sinc(ke)
  13. pl.plot(ke,ake*T,'r--')
  14. pl.hold(False)
  15. pl.grid(True)
  16. pl.xlim([-15,15])
  17. T=8*T1
  18. w0=2*np.pi/T
  19. k=np.arange(-40*w0,40*w0,w0)
  20. ak=(2.0*T1)*np.sinc(k)
  21. pl.subplot(4,1,2)
  22. pl.stem(k,ak*T)
  23. pl.hold(True)
  24. ke=np.arange(-40*w0,40*w0,w0/10)
  25. ake=(2.0*T1)*np.sinc(ke)
  26. pl.plot(ke,ake*T,'r--')
  27. pl.hold(False)
  28. pl.grid(True)
  29. pl.xlim([-15,15])
  30. T=16*T1
  31. w0=2*np.pi/T
  32. k=np.arange(-40*w0,40*w0,w0)
  33. ak=(2.0*T1)*np.sinc(k)
  34. pl.subplot(4,1,3)
  35. pl.stem(k,ak*T)
  36. pl.hold(True)
  37. ke=np.arange(-40*w0,40*w0,w0/10)
  38. ake=(2.0*T1)*np.sinc(ke)
  39. pl.plot(ke,ake*T,'r--')
  40. pl.hold(False)
  41. pl.grid(True)
  42. pl.xlim([-15,15])
  43. T=32*T1
  44. w0=2*np.pi/T
  45. k=np.arange(-80*w0,80*w0,w0)
  46. ak=(2.0*T1)*np.sinc(k)
  47. pl.subplot(4,1,4)
  48. pl.stem(k,ak*T)
  49. pl.hold(True)
  50. ke=np.arange(-40*w0,40*w0,w0/10)
  51. ake=(2.0*T1)*np.sinc(ke)
  52. pl.plot(ke,ake*T,'r--')
  53. pl.hold(False)
  54. pl.grid(True)
  55. pl.xlim([-15,15])

No hay comentarios.:

Publicar un comentario

Related Posts Plugin for WordPress, Blogger...