- /
-
Split Soul
on 3 Oct 2022
- 3
- 22
- 0
- 0
- 189
x=-20:1:51;
y=x;
[x, y]=meshgrid(x,y);
func=-(y+10).*sin(sqrt(abs(x./2+y*y+100)))-x.*sin(sqrt(abs(x.*x-y-100)));
surf(-func,x,y)
hold on
surf(func,x,y)
view(-180,-70)
colormap hot
shading interp
axis off