• Remix
  • Share
  • New Entry

on 13 Oct 2021
  • 5
  • 34
  • 0
  • 0
  • 212
c=-0.8+0.156i;
n=100;
s=10;
XX=-1.1:0.002:1.1;
YY=-1.4:0.002:1.4;
M=[];
for x=XX
V=[];
for y=YY
z=x+1i*y;
for i=0:n
z=z^2+c;
if abs(z)>s, break;end
end
V=[V;i];
end
M=[M V];
end
imagesc(M)
map=[flipud(copper);flipud(hot)];
colormap(map)
axis off
Remix Tree