File:Leakyintegrator.png

From Wikipedia, the free encyclopedia

Leakyintegrator.png(800 × 600 pixels, file size: 18 KB, MIME type: image/png)

Summary[edit]

Leaky Integrator graph, made with PyLab.

Self-made.


from pylab import *

ans = []
A = 1
deltaT = .5
x=0

for J in range(0, 20):
    if 0 < J <= 5:
        I = 5
    else:
        I = 0
    x += (-1 * A * x + I) * deltaT         ## x(t+delta t) = x(t) + (-Ax+I) * delta T
    ans.append(x)
plot(ans)
grid(True)
show()

Licensing:[edit]

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current01:42, 22 September 2008Thumbnail for version as of 01:42, 22 September 2008800 × 600 (18 KB)Miserlou (talk | contribs)Leaky Integrator graph, made with PyLab. Self-made.
The following pages on the English Wikipedia use this file (pages on other projects are not listed):