• Remix
  • Share
  • New Entry

on 24 Oct 2022
  • 5
  • 13
  • 3
  • 0
  • 264
t = 0:3:330;
c = cosd(t);
s = sind(t);
i = 1:0.25:10;
j=0.5:0.1:1;
k=3.5:0.25:4;
f=@(r,l)bsxfun(@times,r.',l);
a = f(i,c);
b = f(i,s);
d = f(j,c);
e = f(j,s);
g = f(k,c);
h = f(k,s);
plot(a,b,'ro','MarkerFaceColor','y')
hold on
plot(d,e,'ko','MarkerFaceColor','k')
plot(g,h,'bo')
axis equal off
Remix Tree
Load full remix tree