Skip to content

Instantly share code, notes, and snippets.

@Opiprog
Created May 3, 2013 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Opiprog/5510281 to your computer and use it in GitHub Desktop.
Save Opiprog/5510281 to your computer and use it in GitHub Desktop.
3D Parametric Equation Plot in Ipython-Matplotlib-Sympy
from sympy import symbols, cos, sin
from sympy.plotting import plot3d_parametric_surface
x,y = symbols('x y')
plot3d_parametric_surface(x**2, y**2, x-y, (x, -5, 5), (y, -5, 5))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment