Draw circle with given data.
2 ビュー (過去 30 日間)
古いコメントを表示
I am new to Matlab and want to draw a circle with radius r and circumference circ = 2*pi*r*r . Is it possible. Thanking you.
Regards, Mrinal
0 件のコメント
採用された回答
David Sanchez
2013 年 8 月 6 日
t=0:.1:2*pi;
radius = 3;
x=radius*cos(t);
y=radius*sin(t);
plot(x,y)
axis square
2 件のコメント
Sathish Kumar
2013 年 8 月 6 日
Just find the radius from circumference using r=circumference/(2*pi); and proceed as said by David
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!