- /
-
Seed Wing
on 20 Oct 2022
- 3
- 9
- 0
- 0
- 205
%[X,Y,Z] = meshgrid(:0.1:5);
[X,Y,Z]=meshgrid(0:0.1:10);n=1.7
V = Z.*exp(-X.^n-Y.^n-Z.^n);
[xsurf,ysurf] = meshgrid(-5:0.1:5);
zsurf = xsurf.^2-ysurf.^2;
contourslice(X,Y,Z,V,xsurf,ysurf,zsurf,1000)
view(135,0)
colormap colorcube
axis tight off