• Remix
  • Share
  • New Entry

on 7 Oct 2021
  • 8
  • 15
  • 1
  • 0
  • 254
clear
Z=-0.01+.010211004i;
col=9;
m=1200;
cx=-1;
cy=-0.5;
l=3.8;
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).^(exp(abs(Z)))+C;
W=exp(-abs(Z));
end
pcolor(rot90(W));
shading flat
axis([100 1300 200 1000])
axis square
colormap hot
Remix Tree