• New Entry

Follow the Green Path into the Darkness

Ian Pennock on 26 Oct 2022
  • 5
  • 8
  • 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));
Remix Tree