How to extract x, y data for particular/selected points from a scatter plot?
23 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Krishnendu Paul
am 25 Dez. 2021
Kommentiert: Krishnendu Paul
am 25 Dez. 2021
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 Kommentare
KSSV
am 25 Dez. 2021
How you want to select? You want to select manually by clicking on plot? What data you have?
Akzeptierte Antwort
KSSV
am 25 Dez. 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
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Data Exploration 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!