• Remix
  • Share
  • New Entry

on 7 Oct 2021
  • 13
  • 67
  • 0
  • 0
  • 250
Z=-.04+.02021i;
col=9;
m=1200;
cx=-1.2;
cy=-0.5;
x=linspace(cx-2,cx+2,m);
y=linspace(cy-2,cy+2,m);
[X,Y]=meshgrid(x,y);
C=X+i*Y;
for k=1:col
Z=conj(-Z).^(sqrt(Z))+C;
W=exp(-abs(Z));
end
pcolor(rot90(W));
shading interp
axis([100 1200 50 1050])
axis square
colormap winter
camva(4)

Image

Remix Tree