• Remix
  • Share
  • New Entry

on 8 Oct 2021
  • 3
  • 27
  • 0
  • 0
  • 178
t=linspace(0,4*pi, 1000);
x = 1.5*cos(t) - cos(10*t);
y = 1.5*sin(t) - sin(10*t);
for i=1:10000
plot(randi(100)+x,randi(100)+y);
plot(randi(100)-x,randi(100)-y);
hold on
end
axis([0 50 0 50])
Remix Tree