• Remix
  • Share
  • New Entry

on 11 Oct 2021
  • 9
  • 54
  • 1
  • 0
  • 266
% big char reduction to previous code
x(1)=.1;y(1)=.2; t(1) = 0;
for i=2:(4e4+1)
x_ = x(i-1);
y_ = y(i-1);
x(i)=(-.6)+(-.4)*x_+(-.4)*x_^2+(-.8)*x_*y_+(.7)*y_+(.3)*y_^(2);
y(i)=(-.4)+(.4)*x_+(.5)*x_^2+(.5)*x_*y_+(.8)*y_+(-.1)*y_^2;
t(i) = t(i-1) + 1;
end
%colors!!
scatter(x, y, 50, t,'Marker','.');
colormap(flipud(turbo));
axis off;
Remix Tree
Load full remix tree