File:Leakyintegrator.png
Appearance
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]I, the copyright holder of this work, hereby release it into the public domain. This applies worldwide. If this is not legally possible: |
This file is a candidate to be copied to Wikimedia Commons.
Any user may perform this transfer; refer to Wikipedia:Moving files to Commons for details. If this file has problems with attribution, copyright, or is otherwise ineligible for Commons, then remove this tag and DO NOT transfer it; repeat violators may be blocked from editing. Other Instructions
| |||
|
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 01:42, 22 September 2008 | 800 × 600 (18 KB) | Miserlou (talk | contribs) | Leaky Integrator graph, made with PyLab. Self-made. |
You cannot overwrite this file.
File usage
The following page uses this file: