• Remix
  • Share
  • New Entry

on 22 Oct 2021
  • 1
  • 39
  • 1
  • 0
  • 278
figure('Color','k')
a=.4+.4i;% t = 0;
%rand(1,2)*[1;i]*a
%rand(2,1)
for i=1:5E3
a=(-.51-0.2i)+(-.1+0.11i)*a+(1.02-0.59i)*a^2+rand(1,2)*[1;i]*0.0003*a;
x(i)=a;
end
%x(end-2:end)
plot(real(x),imag(x),'.y','MarkerSize',3);
hold
Current plot held
for i=1:1E1
a=-.5-.5i+(.1-0.11i)*a+(1.1-0.59i)*a^2+0.3*a^3;
x(end)=a;
end
plot(real(x),imag(x),'.b','MarkerSize',2);
axis off
Remix Tree