Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168742
Image: ubuntu2004
x,y,z=var('x,y,z')
p1=implicit_plot3d(x^2+y^2-1, (x, 0, 1),(y,0,1),(z,0,1), color="red", axes_labels=['x','y','z'])
p2=plot3d(0, (x, 0, 1), (y, 0, 1), color="blue", axes_labels=['x','y','z'])
p3=parametric_plot3d([0, y, x], (x, 0, 1), (y, 0, 1), color="yellow", axes_labels=['x','y','z'])
p4=plot3d(y, (x, 0, 1), (y, 0, 1), color="green", axes_labels=['x','y','z'])
show(p1+p2+p3+p4, axes_labels=['x','y','z'])
show?

File: /sagenb/sage_install/sage-4.7/local/lib/python2.6/site-packages/sage/misc/functional.py

Type: <type ‘function’>

Definition: show(x, *args, **kwds)

Docstring:

Show a graphics object x.

For additional ways to show objects in the notebook, look at the methods on the html object. For example, html.table will produce an HTML table from a nested list.

OPTIONAL INPUT:

  • filename - (default: None) string

SOME OF THESE MAY APPLY:

  • dpi - dots per inch
  • figsize- [width, height] (same for square aspect)
  • axes - (default: True)
  • fontsize - positive integer
  • frame - (default: False) draw a MATLAB-like frame around the image

EXAMPLES:

sage: show(graphs(3))
sage: show(list(graphs(3)))