This Challenge is to determine the minimum distance from a 2-D line segment defined by two points to a point.
The point is (px,py) and the segment is [(vx,vy) to (wx,wy)].
Input are the three defining points and the output is distance.
Input (px py vx vy wx wy): 1 1 0 3 3 0
Output distance: .7071
Point is beyond perpendicular to segment.
Input (px py vx vy wx wy): 4 3 -100 0 0 0
Output distance: 5
Follow Up Challenges:
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers62
Suggested Problems
-
Create a matrix X, where each column is a shifted copy of the vector v
222 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13710 Solvers
-
385 Solvers
-
Sum of odd numbers in a matrix
618 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2146 Solvers
More from this Author309
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Is a numerical approximation allowed, or should one use the geometric formulas?