Message Boards Message Boards

0
|
6168 Views
|
2 Replies
|
2 Total Likes
View groups...
Share
Share this post:
GROUPS:

3D Plotting

Posted 11 years ago
How do I plot on the same graph z=cos(x)*sin(y) and z=1?
POSTED BY: Mike Haas
2 Replies
You may try this:
Z1[x_,y_]:=1;
Z2[x_,y_]:=Cos[x]*Sin[y];
Plot3D[{Z1[x,y],Z2[x,y]},{x,-3,3},{y,-3,3}]
POSTED BY: Ahmed Al-Ali
Plot3D[{1, Cos[x]*Sin[y]}, {x, -3, 3}, {y, -3, 3},
PlotStyle -> Opacity[0.5], Mesh -> False]
POSTED BY: Frank Kampas
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract