• Remix
  • Share
  • New Entry

on 12 Oct 2021
  • 134
  • 19
  • 0
  • 0
  • 246
figure('Color','k')
x(1)=.1;y(1)=.5;t(1)=0;
for i=2:(1e5+1)
w=x(i-1);
v=y(i-1);
x(i)=(.2)+(-.9)*w+(-.6)*w^2+(.4)*w*v+(-1)*v+(0.1)*v^(2);
y(i)=(1.1)+(0.2)*w+(-.9)*w^2+(.1)*w*v+(1.2)*v+(-1.2)*v^2;
end
plot(x,y,'.','color',[0.9 0 0.9] ,'MarkerSize',0.1);axis off
Remix Tree
Load full remix tree