Borrar filtros
Borrar filtros

Draw circle with given data.

2 visualizaciones (últimos 30 días)
Mrinal
Mrinal el 6 de Ag. de 2013
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

Respuesta aceptada

David Sanchez
David Sanchez el 6 de Ag. de 2013
t=0:.1:2*pi;
radius = 3;
x=radius*cos(t);
y=radius*sin(t);
plot(x,y)
axis square
  2 comentarios
Mrinal
Mrinal el 6 de Ag. de 2013
Thnx David. But can i use the circumference formula to draw a circle.
Sathish Kumar
Sathish Kumar el 6 de Ag. de 2013
Just find the radius from circumference using r=circumference/(2*pi); and proceed as said by David

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by