• Remix
  • Share
  • New Entry

on 8 Oct 2021
  • 1
  • 12
  • 0
  • 0
  • 216
n = 25;
th = n*pi;
Th = linspace(0,th,1250);
x = exp( -.5.*Th/(2*pi)).*cos(Th);
y = exp(- .5.*Th/(2*pi)).*sin(Th);
stem3(x,y,Th,'k','Markersize',2) ;
hold on
for i=1:7
stem3(x+i,y+i,Th,'Markersize',2)
hold on
end
view(-14,40)
axis off
Remix Tree