• Remix
  • Share
  • New Entry

on 23 Oct 2021
  • 1
  • 6
  • 0
  • 0
  • 216
col=30;
m=400;
cx=0;
cy=0;
l=1.05;
x=linspace(cx-l,cx+l,m);
y=linspace(cy-.8,cy+.8,m);
[X,Y]=meshgrid(x,y);
c= -.745429;
Z=X+i*Y;
for k=1:col;
Z=Z.^1.9+c;
W=exp(-abs(Z));
end
colormap prism(256)
pcolor(W);
shading flat;
axis('square','equal','off');
Remix Tree