- /
-
Owl in Math Jungle 1
on 4 Oct 2021
- 14
- 45
- 0
- 0
- 266
clear
Z=-10.04+.02021i;
col=9; m=1600;
cx=-1;cy=-0.5;lsp=1.8;
x=linspace(cx-lsp,cx+lsp,m);
y=linspace(cy-lsp,cy+lsp,m);
[X,Y]=meshgrid(x,y);
C=X+i*Y;
for k=1:col;
Z=conj(Z).^(Z)+C;
W=exp(-abs(Z));
end
pcolor(rot90(W));
shading interp
axis([200 1600 700 1600])
axis square
colormap copper(128)