• Remix
  • Share
  • New Entry

on 12 Oct 2021
  • 8
  • 26
  • 0
  • 0
  • 169
figure('Color','k')
hold
Current plot held
n=20;
[x,y]=meshgrid(-n:n/50:n);
mesh(x,y,sin(x).*sin(y+3.14/8).*log(abs(x)).*log(abs(y)))
colormap(gca,'hot(256)')
shading interp
view(0,3.58*n)
camva(4)
Remix Tree