3dplot of modulus of complex function
Even though abs(x+I*y) should always be real... I get the following error:
plot3d(abs(x+I*y),(x,-5,5),(y,-5,5)) ERROR: unable to coerce to a real number
Even though abs(x+I*y) should always be real... I get the following error:
plot3d(abs(x+I*y),(x,-5,5),(y,-5,5)) ERROR: unable to coerce to a real number
This is may not be a good answer explaining why is the Symbolic Ring
not working here, but at least a workaround: forget about symbolic functions and use Python lambda functions instead:
sage: plot3d(lambda x,y: abs(x+I*y), (x,-5,5), (y,-5,5))
or even:
sage: plot3d(lambda x,y: abs(x+I*y), (x,-5,5), (y,-5,5), adaptive=True)
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2013-09-04 13:55:44 +0100
Seen: 489 times
Last updated: Sep 04 '13
Absolute value of complex numbers in 3D plot
complex numbers and parametric curves
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?
Complex argument of a symbolic expression
speed and order of operations with CDF