필터 지우기
필터 지우기

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 CenterFile Exchange에서 Graphics Object Identification에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by