Convolución continua con Python.

  1. #By Mark Wickert from Signals and Systems For Dummies
  2. def expo_conv(t,A,alpha):
  3. import numpy as np
  4. y = np.zeros(len(t))
  5. for k, tk in enumerate(t):
  6. if tk >= 0:
  7. y[k] = A/alpha*(1 - np.exp(-alpha*tk))
  8. return y
  9.  
  10. import numpy as np
  11. import pylab as pl
  12. import ssd
  13. t = np.arange(-4,14,.01)
  14. xc2 = ssd.step(t)
  15. hc2 = ssd.step(t)*np.exp(-1*t)
  16. yc2_num,tyc2 = ssd.conv_integral(xc2,t,hc2,t,('r','r'))
  17. #pl.subplot(211)
  18. pl.plot(tyc2,yc2_num,linewidth=2)
  19. pl.grid(True)
  20. pl.xlabel('Tiempo (t)')
  21. pl.title('y(t)=x(t)*h(t)')
  22. pl.axis([-8,10,-0.5,1.5])
  23. #pl.subplot(212)
  24. #pl.plot(t,expo_conv(t,1,1))

4 comentarios:

  1. Hola, la puedes bajar de aquí:http://www.eas.uccs.edu/~mwickert/ssd/
    Copias el ssd.py en la misma carpeta de tu programa.

    ResponderBorrar
  2. ¿Cómo se llama la carpeta en la que debe ir el ssd?

    ResponderBorrar

Related Posts Plugin for WordPress, Blogger...