• Remix
  • Share
  • New Entry

on 4 Oct 2022
  • 4
  • 19
  • 1
  • 0
  • 279
x=120:0.1:180;
y=x;
[x, y]=meshgrid(x,y);
func=-(y+20).*sin(sqrt(abs(x./2+y+40)))-x.*sin(sqrt(abs(x-y-40)));
func2=(y+20).*sin(sqrt(abs(x./2+y+40)))-x.*sin(sqrt(abs(x-y-40)));
surf(func,x,y)
hold on
surf(-func,x,y)
surf(func2,x,y)
surf(-func2,x,y)
view(180,60)
colormap hot
shading interp
axis off
Remix Tree