Is there an easy way of finding the shortest distance from a point to a polynomial?

18 次查看(过去 30 天)
With access to the point and the coefficients of the polynomial, is there an easy way of getting the perpendicular distance? Currently I'm having to find the distance from the point to every point in the curve and find the shortest manually, and its sloooooow.

采纳的回答

Matt J
Matt J 2013-7-3
编辑:Matt J 2013-7-3
The analytical solution boils down to finding the roots of another polynomial. If your fixed point is (x,y) and your polynomial is p(t), then the distance squared is
f(t) = (t-x)^2 +(p(t)-y)^2
Setting the derivative of f(t) to zero leads to
(t-x)+ (p(t)-y)*dp/dt = 0
which is just a problem of finding the roots of the polynomial on the left hand side. Once you find its roots using the ROOTS command, you then test f(t) at the real roots for the minimum distance.
  1 个评论
Simon
Simon 2013-7-3
Thanks. As it happens, I actually found an even quicker method (which required less code) - dsearchn, which uses the quickhull method

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Polynomials 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by