Previous Up Next

19.2.4  3D surfaces for Maple compatibility

The plot3d command is a Maple-compatible way to draw a surface. It can plot the graph of a function of two variables or a surface given by a parameterization.

Examples

plot3d(x*y,x,y)
plot3d([v*cos(u),v*sin(u),v],u,v)
plot3d([v*cos(u),v*sin(u),v],u=0..pi,v=0..3)

Previous Up Next