• Remix
  • Share
  • New Entry

on 13 Oct 2021
  • 4
  • 26
  • 0
  • 0
  • 252
figure('Color','k');
hold;
Current plot held
for i=1:1000
x=linspace(i,i^1.1);
y=i^5*x;
for j = [1 -1]
for k = [1 -1]
plot((j*x.^(sqrt(rand()))),k*y,'.w');
plot((j*x.^(sqrt(rand()))),k*y,'.k','MarkerSize',0.1);
plot((j*x.^(sqrt(rand())))/2,k*y/2,'.k','MarkerSize',0.1);
end
end
end
axis off;
Image
Remix Tree