• Remix
  • Share
  • New Entry

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