Here is the piece of code which I have written.
def timerfunc(ulcm, dlcm):
count=0
xaxis=[]
yaxis=[]
ion()
while 1:
xaxis.append(count)
dr=(((dlcm.sum)/dlcm.timer)*8)
dlcm.counter=0
yaxis.append(dr)
dlcm.sum=0
h=plot(xaxis,yaxis,'b')
draw()
count=count+1
time.sleep(dlcm.timer/1000.0)
if (count>100):
xlim(count-100, count)
Here is the function which plots the graph.
Is there something which does not makes sense .?
-Madhur
> Is there something which does not makes sense .?
1. How, a computer, is supposed to handle your infinite loop?
2. Running ghraphs shuold be handled in totally different way: look at the
"stripcharting" demo in this zip
http://agni.phys.iit.edu/~kmcivor/wxmpl/downloads/wxmpl-1.3.1.zip