- /
-
Sleepy Dog
on 7 Oct 2021
- 9
- 28
- 8
- 0
- 252
clear
Z=-0.01+.010211004i;
col=9;
m=1400;
cx=-1
cy=-0.5;
l=2;
x=linspace(cx-l,cx+l,m);
y=linspace(cy-l,cy+l,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([100 1300 300 1200])
axis square
colormap copper(256)