필터 지우기
필터 지우기

I need help finding y on a plot knowing x

조회 수: 1 (최근 30일)
Florina-Iuliana TUDOR
Florina-Iuliana TUDOR 2022년 3월 10일
편집: Davide Masiello 2022년 3월 10일
Hi, i created a graph using excel data and now i need to find y on the graph for some x data that is not in the excel tabel

답변 (1개)

Davide Masiello
Davide Masiello 2022년 3월 10일
편집: Davide Masiello 2022년 3월 10일
Let x and y be your dataset extracted from excel, to find y0 at x0, you can use the following code.
y0 = interp1(x,y,x0);
For additional info, check the following link

카테고리

Help CenterFile Exchange에서 Bar Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by