• Remix
  • Share
  • New Entry

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