How can I draw a circle in matlab using parametric ecuations or the circle ecuation?
Afficher commentaires plus anciens
I'm new to matlab and I wanted to know
Réponses (3)
Carlos
le 12 Mar 2014
>> t=-pi:0.01:pi;
>> y=sin(t);
>> x=cos(t);
>> plot(x,y)
Salaheddin Hosseinzadeh
le 12 Mar 2014
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
le 20 Août 2020
0 votes
>> t=-pi:0.01:pi;
>> y=sin(t);
>> x=cos(t);
>> plot(x,y)
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!