|
From: <ch...@se...> - 2008-10-07 19:56:34
|
On Tue, Oct 07, 2008 at 08:19:39AM -0400, Michael Droettboom wrote: > Did you not get an exception when you ran your example? > > The following works for me: > > import pylab > x1 = pylab.arange(-10, 10, 0.01) > x2 = pylab.arange( 0, 10, 0.01) > f1 = [0 for e in x1] > f2 = [1 for e in x2] > pylab.plot(x1, f1, x2, f2) > pylab.show() The lines aren't visible when I do it. No exceptions given. cs |