Hi,
I want to write a program that will show up some graphs one by one
automatically, but it turns out that I have to close the very first one
manually (which is not what I want), then the following will show up
automatically one by one. Any suggestions will be greatly appreciated.
Best Regards, John

from pylab import *

a=[1,2,3,4,5]
b=[1,2,3,4,5]
c=[2,4,9,16,25]


clf()
plot(a,b)
show()
close()

plot(a,c,'r')
show()
close()

plot(a,c,'r')
show()
close()



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to