フィルターのクリア

How can i extract coordinates of point from matlab figure ?

2 ビュー (過去 30 日間)
Ideth Kara
Ideth Kara 2022 年 8 月 19 日
コメント済み: Ideth Kara 2022 年 8 月 19 日
Hello everyone !
i have this code , i want to extract the coordinates of all points constructing the curve.
Xu=linspace(0,60,60);
Yu=linspace(0,10,60);
xlabel('temps(min)')
ylabel('X(km)')
figure()
plot(Xu,Yu)

採用された回答

Image Analyst
Image Analyst 2022 年 8 月 19 日
Yc = interp1(X, Y, Xc);

その他の回答 (1 件)

Matt J
Matt J 2022 年 8 月 19 日
You already have the point data from your code: Xu,Yu.

カテゴリ

Help Center および File ExchangeGraphics Object Identification についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by