• Remix
  • Share
  • New Entry

on 23 Oct 2021
  • 8
  • 30
  • 0
  • 0
  • 270
hold;
Current plot held
n=199;
E=F(0:1)+i;
I=imag(E)+28;
R=E-i*I+125;
s=2^n;
r=randi(2885,n,1)+1;
for j=1:n
scatter(real(R(r)),real(I(r)),s,jet(n),'k','MarkerFaceAlpha',.2);
s=s/2;
end
camva(1)
function V=F(p)
V=[];
if abs(diff(p))>.05
Z=p+.5*i*diff(p)*[4;
4-i+i^sin(50*norm(p))];
V=[p(1);
F(Z(1:2));
F(Z(2:3));
p(2)];
end
end
Remix Tree
Load full remix tree