• Remix
  • Share
  • New Entry

on 4 Oct 2021
  • 12
  • 34
  • 2
  • 0
  • 239
Z=-.04+.02021i; %Tweak this for fun
col=9;
m=1200;
cx=-1.2
cx = -1.2000
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 jet
Remix Tree