Effacer les filtres
Effacer les filtres

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

23 vues (au cours des 30 derniers jours)
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
  2 commentaires
KSSV
KSSV le 25 Déc 2021
How you want to select? You want to select manually by clicking on plot? What data you have?

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 25 Déc 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

Plus de réponses (1)

Walter Roberson
Walter Roberson le 25 Déc 2021
  1 commentaire
Krishnendu Paul
Krishnendu Paul le 25 Déc 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.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by