From: Faust, M. <Mar...@sp...> - 2004-09-01 08:30:31
|
Hi, I'm trying to plot a series of graphs #!/usr/bin/python # -*- coding: UTF-8 -*- # Dr. Markus Faust # markus.faust@+>>no-spam<<+space.eads.net from numarray import * from matplotlib.matlab import * x =3D arange(400.)*0.01+1. y =3D x**2*exp(x) for i in range(3): clf() Figure(figsize=3D(11.0,7.5)) lines=3Dsemilogy(x, abs(y), 'r-') set(lines, 'linewidth', 2.0) title('test') xlabel('x') ylabel('y') grid('on') fname =3D 'test' + str(i) +'.png' savefig(fname, dpi=3D250) show() With matplotlib-0.61.0-numarray0.9-win32-py2.3 this works as it should. One plot windows occurs, I click it away and the next occurs.=20 But with matplotlib-0.62.4.win32-py2.3.exe the program behaves strange. The first windows occurs and I can click it away but the next windows can not be controlled anymore. Is that anticipated? I'm working on a Windows XP Prof. PC with Python 2.3.4 and numarray 0.9. Regards Markus |