get the x-value of a point on curve
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ahmed salah
le 20 Fév 2020
Commenté : the cyclist
le 20 Fév 2020
I draw a curve between two vector of points, not a function, how can I get the x-value of a certain y-value of the curve?
2 commentaires
Réponse acceptée
the cyclist
le 20 Fév 2020
When you say "get", do you mean from the vectors, or only from the curve?
If you mean from the data, you can do, for example
x(y==0.25)
(You might need to be careful if y is not exactly 0.25, due to floating point precision.)
2 commentaires
the cyclist
le 20 Fév 2020
My solution assumes the y value you are looking for is in the original vector. Sky Sartorius's solution is preferred if the y value is not in the original vector, but you want to interpolate.
Plus de réponses (1)
Sky Sartorius
le 20 Fév 2020
This is a table lookup / interpolation problem. For your data, you'll first have to make sure there aren't any repeated y values.
yQuery = -2.6e8; % Example query point.
[Y,ind] = unique(y,'stable')
X = x(ind);
x = interp1(Y,X,yQuery)
2 commentaires
the cyclist
le 20 Fév 2020
The best way to thank a contributor is to upvote and/or accept their answer. This rewards them with reputation points, and also directs future users to solutions.
Voir également
Catégories
En savoir plus sur Interpolation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!