Re: [sympy] a patch to examples/intermediate/mplot3d.py

2009-12-23 Thread Ondrej Certik
On Mon, Dec 21, 2009 at 8:01 AM, Aaron S. Meurer wrote: > I can verify that it doesn't work before this patch and that it works > afterwords on Mac OS X 10.6 with matplotlib installed via fink (0.99.0).  I'd > like further verification first though, as I am not too familiar with > matplotlib.

Re: [sympy] a patch to examples/intermediate/mplot3d.py

2009-12-20 Thread Aaron S. Meurer
I can verify that it doesn't work before this patch and that it works afterwords on Mac OS X 10.6 with matplotlib installed via fink (0.99.0). I'd like further verification first though, as I am not too familiar with matplotlib. Thanks for the patch. Just for the future, it is much easier to

[sympy] a patch to examples/intermediate/mplot3d.py

2009-12-20 Thread chu-ching huang
Hi all, As title, this is a patch for matplotlib used in Sympy: @@ -17,7 +17,7 @@ try: import pylab as p -import matplotlib.axes3d as p3 +import mpl_toolkits.mplot3d as p3 except ImportError: raise ImportError("Matplotlib is required to use mplot3d.")