Borrar filtros
Borrar filtros

How to extract x, y data for particular/selected points from a scatter plot?

23 visualizaciones (últimos 30 días)
In a figure created using scatter plot in matlab, how do select particular points and extract x and y values for the same set of selected points?
regards,
Krishnendu

Respuesta aceptada

KSSV
KSSV el 25 de Dic. de 2021
Read about getpts, ginput. These functions will help to pick points.
[x,y] = getpts() ; % double click to exit
[x,y] = ginput(4) ; % you can specify number of points

Más respuestas (1)

Walter Roberson
Walter Roberson el 25 de Dic. de 2021
  1 comentario
Krishnendu Paul
Krishnendu Paul el 25 de Dic. de 2021
this also works, but because my scatter plots are curving in a certain way, selecting different points is easier with getpts. thank you so much for the help. it will deifinitely be helpful in other tasks.

Iniciar sesión para comentar.

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by