Download this file
29 lines (23 with data), 607 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 | #!/usr/bin/env python2.3
import matplotlib
matplotlib.use('GTKAgg')
import pylab
import gtk
import matplotlib.numerix as numerix
fig = pylab.figure(1)
ind = numerix.arange(60)
x_tmp=[]
for i in range(100):
x_tmp.append(numerix.sin((ind+i)*numerix.pi/15.0))
X=numerix.array(x_tmp)
lines = pylab.plot(X[:,0],'o')
manager = pylab.get_current_fig_manager()
def updatefig(*args):
updatefig.count += 1
if updatefig.count>59: updatefig.count=0
lines[0].set_ydata(X[:,updatefig.count])
manager.canvas.draw()
return gtk.TRUE
updatefig.count=-1
gtk.timeout_add(25,updatefig)
pylab.show()
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.