Ask Your Question

winterstein's profile - activity

2021-02-23 17:56:45 +0200 received badge  Famous Question (source)
2019-10-10 06:17:55 +0200 received badge  Notable Question (source)
2019-04-14 00:18:01 +0200 received badge  Popular Question (source)
2018-03-23 18:11:10 +0200 received badge  Student (source)
2018-03-23 11:54:22 +0200 asked a question plot3d not displaying - only says "Graphics3d Object"?!

Hello

I have a problem, I hope you can help. I'm trying to use plot3d, but instead of drawing a plot, it just prints out the text "Graphics3d Object"

Here is an example Sage snippet that exhibits this problem:

f(x,y) = abs(x*y)
X = plot3d(f, (x,105,72), (y,0.8293,55.8271));
show(X)

I have seen some functions plot OK -- I can't see a pattern to when it does and doesn't work. For example, this does work:

f(x,y) = abs(x*y)
X = plot3d(f, (x,0,10), (y,0,10));
show(X)

This bug is repeatable. I am using 64 bit Linux Mint (Ubuntu), and using the notebook in latest Firefox.

Any help much appreciated. Thank you, - Daniel