• Remix
  • Share
  • New Entry

on 8 Oct 2021
  • 43
  • 26
  • 0
  • 0
  • 255
a=.7;
b=.1;
p=pi;
t=-5*p:p/8:p;
s = @(x)size(x,2);
e = @(t).7*exp(.1*t);
x=e(t).*cos(t)*100;
y=e(t).*sin(t)*100;
u=round(linspace(3,99,s(x)));
c=parula(s(x));
figure('Color','k')
hold on
for k=2:s(x)
plot(fft(repmat(eye(u(k)),2))*4+y(k)*j+x(k),'Color',c(k-1,:))
end
axis equal off
Remix Tree