• Remix
  • Share
  • New Entry

on 4 Oct 2022
  • 2
  • 10
  • 1
  • 0
  • 278
x=-30:1:30;
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,-40)
colormap hot
shading interp
axis off
Remix Tree