• Remix
  • Share
  • New Entry

on 10 Oct 2021
  • 19
  • 162
  • 2
  • 0
  • 272
set(gcf,'Color','k')
p=15*eye(100);r=5*eye(100);
polarplot(p,'-w');grid off;axis off;hold on
polarplot(5*tan(r),'.w')
t=linspace(0,0.81*pi,175);
p=polarplot(11*sin(t),15*cos(t),'-.w');p.Marker='diamond';
a=[0:0.1:2.1*pi];
b=16*cos(a);c=16*sin(a);
[b,c]=cart2pol(b,c);
polarplot(b,c,'-w')
Remix Tree