- /
-
3Meeting
on 13 Oct 2022
- 2
- 9
- 0
- 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,-50)
colormap jet
shading interp
axis off