I want to draw a circle (as a radius) for each point ,draws the circle one by one
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
ali hadjer
am 2 Nov. 2015
Kommentiert: Image Analyst
am 2 Nov. 2015
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
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 2 Nov. 2015
Come back with your code if you still can't figure it out.
3 Kommentare
Image Analyst
am 2 Nov. 2015
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
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Parallel Computing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!