Get coordinates to point

2 visualizaciones (últimos 30 días)
Ole
Ole el 5 de Mzo. de 2014
Respondida: Giorgos Papakonstantinou el 5 de Mzo. de 2014
Hi
Is there a function to get the coordinates to a point plotted in a figure? Im plotting two points separately in a figure, using the data cursor to get the coordinates of the two points, and then plotting a straight line between them.
To plot a line between the points i use
plot([x1,x2],[y1,y2])
with the coordinates from the data cursor.
Would be easier to use a call which extracts the coordinates after each point plotted, and then plotting the line between, and use this in my script.
Thanks
  1 comentario
Matt J
Matt J el 5 de Mzo. de 2014
Why not plot all points at once?

Iniciar sesión para comentar.

Respuestas (1)

Giorgos Papakonstantinou
Giorgos Papakonstantinou el 5 de Mzo. de 2014
h = plot([x1,x2],[y1,y2])
x = get(h, 'xdata') % the x values
y = get(h, 'ydata') % the y values

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by