Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Why is the graph of the parametric equation like this

1 回表示 (過去 30 日間)
cgo
cgo 2017 年 11 月 7 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I am graphing r = [5cost, 5sint] from t = 1:3000. I was wondering why the graph shown is an annulus instead of a circle? I graphed the same for t = 1:0.1:300 and it shows a circle that is much thinner.
Any insights why this happens? They are both circular functions, supposedly without any thickness.

回答 (1 件)

KSSV
KSSV 2017 年 11 月 7 日
t = linspace(0,2*pi,100) ;
r = [5*cos(t) ; 5*sin(t)] ;
plot(r(1,:),r(2,:))

この質問は閉じられています。

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by