Azzera filtri
Azzera filtri

How can i extract coordinates of point from matlab figure ?

2 visualizzazioni (ultimi 30 giorni)
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)

Risposta accettata

Image Analyst
Image Analyst il 19 Ago 2022
Yc = interp1(X, Y, Xc);

Più risposte (1)

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

Categorie

Scopri di più su Graphics Object Identification in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by