I have a function of two variables:

With some values

Now I have to plot this, so that tha values of U are between -5 and 0. How do I do this? (Note: It's not the values of x and y that need to be between -5 and 0.)
Thanks!
I have a function of two variables:

With some values

Now I have to plot this, so that tha values of U are between -5 and 0. How do I do this? (Note: It's not the values of x and y that need to be between -5 and 0.)
Thanks!
A nice smooth surface can be obtained simply by using the
plot3dcommand along with your operatorUas given.The
viewoption will restrict the z-range displayed. So it is easy to constrain it to z=-5..0.But you could also compute the x- and y-ranges for the
plot3dcall so that they are tightly constrained by the lower value of z=-5. (There are various ways to compute those tight bounds.)