• Remix
  • Share
  • New Entry

on 20 Oct 2022
  • 9
  • 20
  • 0
  • 1
  • 195
[X,Y,Z] = meshgrid(-5:0.1:5);
V = Z.*exp(-X.^2-Y.^2-Z.^2);
[xsurf,ysurf] = meshgrid(-5:0.1:5);
zsurf = xsurf.^3-ysurf.^3;
contourslice(X,Y,Z,V,xsurf,ysurf,zsurf,1000)
view(45,90)
colormap colorcube
axis off
Image
Remix Tree