Ask Your Question
0

Error when making it a function

asked 7 years ago

Julien gravatar image

updated 7 years ago

kcrisman gravatar image

This code works for my 3d graph.

But when I turn it into a function for an @interact, it does not work anymore.

How can I fix this? Thanks.

Edit: here is the code:

x, y, z = var('x, y, z')
@interact
def graphe(f = input_box(default=cos(y), label="$f(x,y)$"), r = input_box(default=10, label="$r$")):
    G = implicit_plot3d(z==f(x,y), (x, -r, r), (y, -r, r), (z, -r, r), plot_points=30, color='orange', mesh=1, opacity=.7)
    show(G, spin=1)
Preview: (hide)

Comments

Please provide the code and instructions to reproduce.

slelievre gravatar imageslelievre ( 7 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 7 years ago

kcrisman gravatar image

updated 7 years ago

Try adding the line

f(x,y) = f

so that Sage knows it is a function of two variables; your syntax can't work because f(x,y) doesn't work from the input box this way. Here is a live example.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 7 years ago

Seen: 298 times

Last updated: Mar 19 '18