• Remix
  • Share
  • New Entry

on 18 Oct 2021
  • 1
  • 44
  • 3
  • 0
  • 208
hold on
theta=0:pi/60:2*pi
theta = 1×121
0 0.0524 0.1047 0.1571 0.2094 0.2618 0.3142 0.3665 0.4189 0.4712 0.5236 0.5760 0.6283 0.6807 0.7330 0.7854 0.8378 0.8901 0.9425 0.9948 1.0472 1.0996 1.1519 1.2043 1.2566 1.3090 1.3614 1.4137 1.4661 1.5184
h=plot(10*cos(theta),10*sin(theta))
h =
Line with properties: Color: [0 0.4470 0.7410] LineStyle: '-' LineWidth: 0.5000 Marker: 'none' MarkerSize: 6 MarkerFaceColor: 'none' XData: [10 9.9863 9.9452 9.8769 9.7815 9.6593 9.5106 9.3358 9.1355 8.9101 8.6603 8.3867 8.0902 7.7715 7.4314 7.0711 6.6913 6.2932 5.8779 5.4464 5.0000 4.5399 4.0674 3.5837 3.0902 2.5882 2.0791 1.5643 1.0453 0.5234 6.1232e-16 -0.5234 … ] YData: [0 0.5234 1.0453 1.5643 2.0791 2.5882 3.0902 3.5837 4.0674 4.5399 5.0000 5.4464 5.8779 6.2932 6.6913 7.0711 7.4314 7.7715 8.0902 8.3867 8.6603 8.9101 9.1355 9.3358 9.5106 9.6593 9.7815 9.8769 9.9452 9.9863 10 9.9863 9.9452 9.8769 … ] ZData: [1×0 double] Show all properties
axis off
r=9;i=1;
for theta=pi/6:pi/6:2*pi
y1=r*cos(theta);
x1=r*sin(theta);
plot([x1/9*8 x1/9*7],[y1/9*8 y1/9*7])
text(x1/9*9.5,y1/9*9.5,num2str(i));
i=i+1;
end
Remix Tree
Load full remix tree