How to know about the co-ordinates of a point in a MATLAB plot

6 Ansichten (letzte 30 Tage)
tina jain
tina jain am 26 Mai 2015
Bearbeitet: Walter Roberson am 26 Mai 2015
how to know about the value of intersection point .
Let it be blue line, now I want to know the value at y when value of x is 0.025

Antworten (1)

Star Strider
Star Strider am 26 Mai 2015
Bearbeitet: Star Strider am 26 Mai 2015
Use the interp1 function:
yi = interp1(x, y, 0.025, 'linear','extrap');
assuming that ‘x’ and ‘y’ are the data that define your blue line, ‘yi’ will be the value of ‘y’ where x=0.025.

Kategorien

Mehr zu 2-D and 3-D Plots 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