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

조회 수: 1 (최근 30일)
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

채택된 답변

Image Analyst
Image Analyst 2015년 11월 2일
Come back with your code if you still can't figure it out.
  댓글 수: 3
Walter Roberson
Walter Roberson 2015년 11월 2일
What does "the circle of the second point" mean?
Image Analyst
Image Analyst 2015년 11월 2일
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

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by