Borrar filtros
Borrar filtros

How to interpolate to get two values for one variable?

1 visualización (últimos 30 días)
KH
KH el 4 de Dic. de 2012
I have a graph which is ascending in the beginning and will descend afterwards.
Let's say my y-axis is Y, and x-axis is X,
for a certain Y value, it will give two values on the x-axis.
say in this case i set Y to a value of 20, but it only gives me one X value, which is the latter value when the graph is in its descending portion. How do I get the X value for the initial ascending part of the graph?
I did something like this: interp1(Y,X,20)
Kindly advice.. Thanks!

Respuestas (1)

John Petersen
John Petersen el 4 de Dic. de 2012
Use the same index for each parameter. If you want to know the values of X for a given value of Y,
yind = (Y==yvalue);
xvalues = X(yind); % values of x that correspond to yvalue

Categorías

Más información sobre Graph and Network Algorithms 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