I need help finding y on a plot knowing x

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

Antworten (1)

Davide Masiello
Davide Masiello am 10 Mär. 2022
Bearbeitet: Davide Masiello am 10 Mär. 2022

0 Stimmen

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

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 10 Mär. 2022

Bearbeitet:

am 10 Mär. 2022

Community Treasure Hunt

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

Start Hunting!

Translated by