Need to find out Area of polygon

2 visualizaciones (últimos 30 días)
Shweta Saboo
Shweta Saboo el 9 de Sept. de 2019
Respondida: Walter Roberson el 9 de Sept. de 2019
I want to calculate area of Polygon having dimensions [102.49728 126.58069 127.49728 126.58069 127.49728 163.58069 102.49728 163.58069].

Respuesta aceptada

Walter Roberson
Walter Roberson el 9 de Sept. de 2019
However, you do not appear to have X Y coordinates. If what you have is a polyhedra that is 102.49728 in one direction, 126.68069 in a second direction, 127.49728 in a third direction, and so on, then prod() the array.
However I am guessing you want
p = [102.49728 126.58069 127.49728 126.58069 127.49728 163.58069 102.49728 163.58069];
xy = reshape(p, 2, []).';
and then you could polyarea() on xy(:,1) and xy(:,2)

Más respuestas (0)

Categorías

Más información sobre Elementary Polygons en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by