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