• Remix
  • Share
  • New Entry

on 23 Oct 2021
  • 0
  • 9
  • 0
  • 0
  • 211
col=20;
m=400;
cx=-.6;
cy=0;
l=1.5;
x=linspace(cx-l,cx+l,m);
y=linspace(cy-l,cy+l,m);
[X,Y]=meshgrid(x,y);
Z=zeros(m);
C=X+i*Y;
for k=1:col;
Z=Z.^5+C;
W=exp(-abs(Z));
end
colormap pink(256);
pcolor(W);
shading flat;
axis('square','equal','off');
Image
Remix Tree