How can I draw a circle in matlab using parametric ecuations or the circle ecuation?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I need this for my homework and I managed to do it but the end result wasn't that smooth. Can somebody give me a simple, short code that gets the job done?
0 comentarios
Respuestas (2)
Youssef Khmou
el 14 de Mzo. de 2014
hi, correct the word 'ecuations' for future searching. Parametric method is the easiest one :
t=0:0.1:2*pi;
x=cos(t);
y=sin(t);
plot(x,y);
0 comentarios
Image Analyst
el 14 de Mzo. de 2014
Code examples are in the FAQ: http://matlab.wikia.com/wiki/FAQ#How_do_I_create_a_circle.3F Increase the number of samples if you want a smoother circle.
0 comentarios
Ver también
Categorías
Más información sobre Numerical Integration and Differentiation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!