• Remix
  • Share
  • New Entry

on 14 Oct 2021
  • 5
  • 30
  • 0
  • 0
  • 278
m=5e2;
[r,i]=meshgrid(-linspace(0.34234,0.343863,5e2),-linspace(0.639824,0.641739,5e2));
C=complex(r,i);
Z=C;
p=1:m*m;
d(p)=m+1;
for i = 1 : m
Z(p)=Z(p).*Z(p)+C(p);
U(p)=abs(Z(p));
a=p(20<U(p));
d(a)=i;
p=p(U(p)<=20);
end
imagesc(log(reshape(d,m,m)).^2+0.5*cos(reshape(d,m,m)))
c=colormap('jet');
axis off
Remix Tree