Perimeter by adding distance

3 views (last 30 days)
Shubham
Shubham on 7 Feb 2021
Answered: Srivardhan Gadila on 11 Feb 2021
I have two arrays [x] and [y] (contains values corresponding to x)..I plot the values it resulted in a closed curve now the question is I want find the perimeter of this curve by adding distance between adjacent points. What will be the logic

Answers (1)

Srivardhan Gadila
Srivardhan Gadila on 11 Feb 2021
You can refer to the documentation of the functions perimeter & polyshape.
pgon = polyshape([0 0 1 3], [0 3 3 0]);
plot(pgon)
P = perimeter(pgon)

Categories

Find more on Elementary Polygons in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!