Problem 2242. Wayfinding 5 - Travel contour

This is the fifth part of a series of assignments about wayfinding. The final goal of this series is to be able to calculate the fastest route through a terrain of areas with different properties. The assignments will build on top of each other, gradually increasing the complexity, but guiding you stepwise towards the final goal. You can re-use code from preceding assignments to save some work. See search:tag=wayfinding for the other assignments.

This time, you will travel around a polygon, over its contour. You get the nodes of the polygon, in the correct order, as a 2xn array F. The last node of F is connected to the first node.

a is the index in F of the starting node, and b is the goal.

Calculate the shortest distance from a to b over the contour of the polygon.

The distance is measured as the Euclidean distance between points. You can not enter the internal area of the polygon. The contour of the polygon does not self-intersect.

Solution Stats

71.43% Correct | 28.57% Incorrect
Last Solution submitted on Dec 18, 2019

Solution Comments

Show comments

Problem Recent Solvers5

Suggested Problems

More from this Author31

Community Treasure Hunt

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

Start Hunting!