- /
-
Follow the Green Path into the Darkness
on 26 Oct 2022
- 5
- 11
- 0
- 0
- 111
a = linspace(-1,1,300);
[x,y] = meshgrid(a,a);
z=tan(x).^2;
fh=figure();
fh.WindowState='maximized';
imshow(cat(3,x,y,z));