Mul.flatten -- optimize for all-objects-are-commutative case
[sympy.git] / sympy / plotting / __init__.py
blobaf10aa623705a91a635ed8ed33fd66948f79b2f1
1 """Plotting module that can plot 2D and 3D functions
2 """
3 try:
4 try:
5 from ctypes import *
6 except:
7 raise ImportError("ctypes is required for plotting.\n'easy_install ctypes' or visit http://sourceforge.net/projects/ctypes/")
9 def Plot(*args, **kwargs):
10 import plot
11 return plot.Plot(*args, **kwargs)
13 except Exception, e:
14 def Plot(*args, **kwargs):
15 raise e
17 from textplot import textplot