Matlab圆半径重复

时间:2015-03-14 17:37:03

标签: matlab plot geometry

我是Matlab的新手,任何人都可以解释为什么圆圈在半径上测量为10倍。我预计它与半径相匹配

xCenter = 5;
yCenter = 5;
theta = 0 : 0.01 : 2*pi;
radius = 5;
x = radius * cos(theta) + xCenter;
y = radius * sin(theta) + yCenter;
plot(x, y);
axis square;
xlim([0 10]);
ylim([0 10]);
grid on;

由于

1 个答案:

答案 0 :(得分:0)

如果你想让圆在x和y轴上达到5,那么它应该以原点为中心。