Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. 0<=x<=1
  2. 0<=y<=1
  3. 0<=z<=x/(1+y)
  4.  
  5. [x y]=meshgrid(0:0.01:1);
  6. z=x./(1+y);
  7. surf(x,y,z);
  8.  
  9. [X,Y,Z]=meshgrid(0:.01:1);
  10.  
  11. isosurface(X,Y,Z,Z.*(X./(1+Y)-Z),0)
  12.  
  13. isosurface(X,Y,Z,Z.*(X./(1+Y)-Z).*X.*(X-1).*Y.*(Y-1),0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement