• Remix
  • Share
  • New Entry

on 25 Oct 2022
  • 4
  • 10
  • 0
  • 0
  • 280
figure('Color','r')
Z=+0.04+.02022i;
L=9;
m=1200;
cx=-1
cx = -1
cx = -1
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:L;
Z=conj(Z).^Z+C;
W=exp(-abs(Z));
end
pcolor(rot90(W));
shading flat
axis([100 1200 200 1e3])
axis off
c=copper;r=[1 0 0]
r = 1×3
1 0 0
colormap([r;r;c;flip(c)])
Remix Tree