- /
-
Nice mosaic
on 23 Oct 2021
- 5
- 18
- 3
- 0
- 117
x=-100:1:100;
y=x;
[X,Y]=meshgrid(x,y);
Z=sin(X.^2+Y.^2);
pcolor(X,Y,Z);
colormap jet
shading interp
axis('equal','square','off')