get the x-value of a point on curve
15 次查看(过去 30 天)
显示 更早的评论
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?
采纳的回答
the cyclist
2020-2-20
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 个评论
the cyclist
2020-2-20
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.
更多回答(1 个)
Sky Sartorius
2020-2-20
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 个评论
the cyclist
2020-2-20
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.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!