• Remix
  • Share
  • New Entry

on 11 Oct 2021
  • 7
  • 18
  • 0
  • 0
  • 111
N=500
N = 500
for k=1:1:N
t=0:(0.99*pi/2):k;
x=t.*cos(t);
y=2*t.*sin(t);
plot(y,x,'r')
hold on
plot(x,y,'k');
axis ([-N N -N N]);
%set(h,'xdata',x,'ydata',y);
%M(k)=getframe;
end
Image
Remix Tree