- /
-
clock
on 18 Oct 2021
- 2
- 26
- 0
- 0
- 208
hold on
theta=0:pi/30:2*pi
h=plot(10*cos(theta),10*sin(theta))
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