Added a warning when constructing a Matrix without bracket + test modified
[sympy.git] / examples / plotting_nice_plot.py
blob753ca6fcc6067d848829eec95fc3ad43dbba3308
1 #!/usr/bin/env python
2 import iam_sympy_example
4 from sympy import Symbol, cos, sin, Plot, log, tan
5 from sympy.abc import x, y
7 Plot(cos(x)*sin(y), sin(x)*sin(y), cos(y)+log(tan(y/2))+0.2*x, [x, -0.00,
8 12.4, 40], [y, 0.1, 2, 40])