• Remix
  • Share
  • New Entry

on 7 Oct 2021
  • 3
  • 20
  • 0
  • 0
  • 171
[x,y,z] = meshgrid(-6:0.1:6);
V =x.^3.* exp(-x.^2 -y.^2 -z.^2);
s = isosurface(x,y,z,V,1e-3);
p = patch(s,'FaceColor',[0.1 .1 0.1],'EdgeColor','green');
axis off
view(4,30);
camlight;
Remix Tree