Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
tina jain
tina jain el 26 de Mayo de 2015
Editada: Walter Roberson el 26 de Mayo de 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
  2 comentarios
Star Strider
Star Strider el 26 de Mayo de 2015
Use the green and brown picture icon to attach your .png file.

Iniciar sesión para comentar.

Respuestas (1)

Star Strider
Star Strider el 26 de Mayo de 2015
Editada: Star Strider el 26 de Mayo de 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.

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by