how to sraw a circle
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
hello
i have a question
i must to know how to draw faster a circle in matlab
Réponses (1)
Wayne King
le 22 Nov 2011
You have not really given us much to go on. What do you mean "faster"? compared to what? You have not shown us any code.
r = 1;
theta = 0:0.01:(2*pi);
y = r*exp(1j*theta);
plot(real(y),imag(y))
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!