• Remix
  • Share
  • New Entry

on 23 Oct 2021
  • 2
  • 6
  • 1
  • 0
  • 121
x=-50:0.18:50;
y=x;
[X,Y]=meshgrid(x,y);
Z=sin(X.^2+Y.^2);
pcolor(X,Y,Z);
colormap copper
shading interp
axis('equal','square','off')
Remix Tree