• Remix
  • Share
  • New Entry

on 22 Oct 2021
  • 4
  • 15
  • 2
  • 0
  • 278
hold;
Current plot held
E=F(0:1)+i;
I=imag(E)+8;
R=E-i*I+125;
%fill(R,I,'k');
s=[64150 1000];
r=randi(2885,199,1)+1;
for j=1:2
scatter(real(R(r)),real(I(r)),s(j),rand(199,3),'f','MarkerFaceAlpha',.3)
end
camva(2)
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