• Remix
  • Share
  • New Entry

on 13 Oct 2022
  • 9
  • 90
  • 2
  • 0
  • 265
rng(200);
x=-.6:.001:.6;
y=1-sqrt(1-(abs(x)-1).^6);
hold on
for i=1:40
s=rand;
x_star=rand*20+x*s;
y_star=rand*20;
fill([x_star, fliplr(x_star)],[s*y+y_star y_star-s*y],"w","EdgeColor","y")
end
hold off
set(gca, "Color",[.1 .1 .22],"XLim",[0 20],"YLim",[0 20],"XTick",[],"YTick",[]);
Remix Tree