matlab 想画一个圆,直径为5mm,圆上等分360次,得出每个点的坐标

2026年09月23日 05:13
有1个网友回答
网友(1):

a=0:360;
theta=a/180*pi;
x=sin(theta);
y=cos(theta);
plot(x,y)