• Remix
  • Share
  • New Entry

on 18 Oct 2021
  • 6
  • 34
  • 0
  • 0
  • 241
s=500;
q=ones(s);
l=@(x)round((x+1.25)*200);
e=@(x)x<1|x>s|isnan(x);
for k=1:6e5
c=(rand+rand*i)*4-2-2i;
f=@(z)(.2*z^5+.9*z^3+.4*z^2+c^.8);
z=0;
for j=1:99
z=f(z);
x=l(imag(z));
y=l(real(z)+.125);
if e(x)|e(y)
continue
end
q(y,x)=q(y,x)+1;
end
end
imshow(rescale(q).^.5);
Remix Tree