Given a list of 2-d points defining the vertices of a polygon, determine whether these points are sorted clockwise.

The inputs to this function are two vectors x and y (with equal size) containing the x- and y- coordinates of the polygon vertices, respectively.

The function should return true when sorted clockwise, and false when sorted counterclockwise (the polygon vertices will always be sorted either way).

Example:

x = [-1,-1,1,1];
y = [-1,1,1,-1];

defines a square, the vertices are listed clockwise

d_correct = true;

Solution Stats

1141 Solutions

213 Solvers

Last Solution submitted on Feb 15, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...

Problem Recent Solvers213

Suggested Problems

More from this Author33

Problem Tags

Community Treasure Hunt

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

Start Hunting!