필터 지우기
필터 지우기

How can I draw a circle in matlab using parametric ecuations or the circle ecuation?

조회 수: 7 (최근 30일)
I'm new to matlab and I wanted to know

답변 (3개)

Carlos
Carlos 2014년 3월 12일
>> t=-pi:0.01:pi;
>> y=sin(t);
>> x=cos(t);
>> plot(x,y)

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2014년 3월 12일
That's one simple way you can do it
x= sin(0:.01:2*pi);
y= cos(0:.01:2*pi);
plot(x,y);
axis equal
also try below, but you probably gonna get some warnings! lol
f=@(x,y) x^2+y^2-25
ezplot(f)
axis equal
Good Luck!

mohit kumar veeraboina
mohit kumar veeraboina 2020년 8월 20일
>> t=-pi:0.01:pi;
>> y=sin(t);
>> x=cos(t);
>> plot(x,y)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by