Given the [x,y,z] coordinates for the three points pa, pb, and pc, return true if the test point pc is on the line segment with endpoints pa and pb.
pc is on the line segment if it lies at one of the end points.
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers20
Suggested Problems
-
First non-zero element in each column
942 Solvers
-
Matrix which contains the values of an other matrix A at the given locations.
239 Solvers
-
I've got the power! (Inspired by Project Euler problem 29)
142 Solvers
-
When can one be the Life Member of the IEEE?
74 Solvers
-
Create matrix of replicated elements
397 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Your recent edit to the test suite broke it. You need a space or a comma between the two -1 in the definition of pa in the first test.
Thanks, Guillaume. I just fixed the error.