• Remix
  • Share
  • New Entry

on 5 Oct 2021
  • 5
  • 34
  • 0
  • 0
  • 193
[y,x] = meshgrid(-90:1.5:90,-90:1.5:90);
r = sqrt(x.^2+y.^2);
Phi = angle(x+y*1i);
z = sin(exp(0.04*r+2)+Phi);
surf(x,y,z), shading interp;
colormap('gray');
set(gcf,'Color','k');
axis equal, axis off;
view(2);
Image
Remix Tree