A Simple Three-Dimensional Plot

Description

Here is Sage cell that plots $\sin y - \cos x$ for $-10 \leq x \leq 10$ and $-10 \leq y \leq 10$.

Sage Cell

Code

x, y = var('x, y')
g(x,y) = sin(y) - cos(x)
plot3d( g, (x,-10,10), (y,-10,10) )

Options

None

Tags

Primary Tags: Plotting: Three-dimensional plots

Secondary Tags: Three-dimensional plots: Rectangular plots

Related Cells

None

Attribute

Author: T. Judson

Permalink:

Date: 17 Jun 2017 16:50

Submitted by: Tom Judson

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License