Draw circle with given data.
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
David Sanchez
le 6 Août 2013
t=0:.1:2*pi;
radius = 3;
x=radius*cos(t);
y=radius*sin(t);
plot(x,y)
axis square
2 commentaires
Sathish Kumar
le 6 Août 2013
Just find the radius from circumference using r=circumference/(2*pi); and proceed as said by David
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!