• Remix
  • Share
  • New Entry

on 15 Oct 2021
  • 24
  • 182
  • 3
  • 0
  • 257
s=500;
p=.0052;
q=zeros(s, s);
for j=1:1e6
c=(rand+rand*i)*4-2-2i;
f=@(x)x.^2+c;
z=0;
for j=1:s
z=f(z);
end
if abs(z)>2
z=0;
while abs(z)<2
z=f(z);
x=round((imag(z)+1.3)./p);
y=round((real(z)+1.65)./p);
if x<1|y<1|x>s|y>s
continue
end
q(y,x)=q(y,x)+1;
end
end
end
imshow((q./max(max(q))).^.5);
Remix Tree
Load full remix tree