Hello ,
  i have this function :

def Graph(data):
     """Make the plot"""
     plt.colormaps()
     n=sc.shape(data)[2]
     ims=[]
     for i in range(n):
         mydata=data[:,:,i]
         im=plt.imshow(mydata,cmap=plt.get_cmap('jet'))
         ims.append([im])
     return ims


and i use it in my application like this:

fig=plt.gcf()
ani=ArtistAnimation(fig,result,interval=10,repeat=False)
plt.show()

How can i do it so ,for every 1 sec take a plot.

Thanks!



------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to