• Remix
  • Share
  • New Entry

on 4 Oct 2021
  • 1
  • 16
  • 0
  • 0
  • 187
n=10000;
x=20*(rand(50,n)-0.5);
y=20*(rand(50,n)-0.5);
for i=1:n
y(:,i+1)=x(:,i);
x(:,i+1)=1-y(:,i)+1.4*abs(x(:,i));
end
for i=1:50
plot(y(i,:),x(i,:),'.','color',rand(1,3),'markersize',0.5)
hold on
end

Image

Remix Tree