I have a program that enters a while loop, calculates a bunch of arrays and then plots a figure. The user then looks at the figure and is asked wether the result is ok. If the answer is no, then the calculations are redone and the figure replotted. If the answer is yes then it exits the loop.
import pylab as p end = False while not end: (x,y,z) = calculate_arrays() figure(1) subplot(211) plot(x,z) subplot(212) plot(x,y) draw() end = confirm("is the plot ok?") clf() However using the draw() command does not display the figure. How do I do this? I am using Tkagg with numpy on a Mac OS X. Cheers Tommy ------------------------------------------------------------------------- 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