フィルターのクリア

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

23 ビュー (過去 30 日間)
Krishnendu Paul
Krishnendu Paul 2021 年 12 月 25 日
コメント済み: Krishnendu Paul 2021 年 12 月 25 日
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 件のコメント
KSSV
KSSV 2021 年 12 月 25 日
How you want to select? You want to select manually by clicking on plot? What data you have?
Krishnendu Paul
Krishnendu Paul 2021 年 12 月 25 日
Yes!

サインインしてコメントする。

採用された回答

KSSV
KSSV 2021 年 12 月 25 日
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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2021 年 12 月 25 日
  1 件のコメント
Krishnendu Paul
Krishnendu Paul 2021 年 12 月 25 日
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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by