• Remix
  • Share
  • New Entry

on 23 Oct 2021
  • 2
  • 9
  • 2
  • 0
  • 124
x=-50:0.5:50;
y=x;
[X,Y]=meshgrid(x,y);
Z=(cos(X))^2+(cos(Y))^2;
pcolor(X,Y,Z);
colormap hsv
shading interp
axis('equal','square','off')
Remix Tree