I want to draw a circle (as a radius) for each point ,draws the circle one by one

I want to draw a circle (as a radius) for each point ,draws the circle one by one NB:r is the radios and (x,y) is coordiante of point

 Réponse acceptée

Come back with your code if you still can't figure it out.

3 commentaires

i plot the circle but i want to show it one after one (the circle of point 1 plot first ,then the circle of the seconde point 2 and the circle of the 3rd .....ect) one after one not in the same time (juste for show it )
What does "the circle of the second point" mean?
So just put into a for loop where you're generating the center and radius for each circle.
for k = 1 : numCircles
xCenter = .....whatever.....
yCenter = .....
radius = ......
% Code to draw a circle follows....
end

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by