plot ellipses by clicking points?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ramesh Bala
am 17 Sep. 2018
Kommentiert: Ramesh Bala
am 17 Okt. 2018
How to plot ellipses by clicking on the points. I have a 100*100 cm grid and I would like to generate ellipses in it by clicking different positions. Is there a way to do it? The ellipses can intersect and thereby I need to detect the high region of intersection.
5 Kommentare
Akzeptierte Antwort
KSSV
am 18 Sep. 2018
Bearbeitet: KSSV
am 18 Sep. 2018
figure
hold on
axis equal
t=-pi:0.01:pi;
for i = 1:10
a=10; % horizontal radius
b=5; % vertical radius
[x0,y0] = getpts() ;
x=x0(1)+a*cos(t);
y=y0(1)+b*sin(t);
plot(x,y)
drawnow
end
7 Kommentare
KSSV
am 18 Sep. 2018
That is your choice..you should be knowing....they determine the size/ radii of ellispes.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Labels and Annotations finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!