3d plot syntax issue
I try this in Sage 5.11 Notebook:
var (x' y')
plot3d(x^2 y^2,(x,-2,2),(y-3,3))
But I got syntax error. I typed the figures correctly, but I don't know how to solve the syntax error.
I try this in Sage 5.11 Notebook:
var (x' y')
plot3d(x^2 y^2,(x,-2,2),(y-3,3))
But I got syntax error. I typed the figures correctly, but I don't know how to solve the syntax error.
The issue is with x^2 y^2
. You need to tell sage the operation between $x^2$ and $y^2$. Is your function $x^2\cdot y^2$? If so, you need:
plot3d(x^2*y^2,(x,-2,2),(y,-2,2)).
As a note, it ispossible to use this syntax with implicit multiplication - see e.g. http://math.stackexchange.com/a/11866...
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2015-03-16 19:41:08 +0100
Seen: 542 times
Last updated: Mar 16 '15
Plot Series of 3D Direction Vectors (Not All from Origen)
filling in an area under a function or curve in 3 dimensions
How can i generate a 3D plot with more details?
Saving 3d pictures as anaglyphs
Color plots on surface of sphere
can I create isosurface contours from list data?
Be careful, it should be
and not