Filter löschen
Filter löschen

How can i extract coordinates of point from matlab figure ?

2 Ansichten (letzte 30 Tage)
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)

Akzeptierte Antwort

Image Analyst
Image Analyst am 19 Aug. 2022
Yc = interp1(X, Y, Xc);

Weitere Antworten (1)

Matt J
Matt J am 19 Aug. 2022
You already have the point data from your code: Xu,Yu.

Kategorien

Mehr zu Graphics Object Identification finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by