Skip to main content
General cleanup
Source Link
m_goldberg
  • 108.6k
  • 16
  • 107
  • 263

How todo I calculate anthe area of a polygon bygiven its coordinates?

I have a polygon Polygon[{{0, 200 }, {200, 100}, {500, 300}, {100, 700}}].:

Polygon[{{0, 200 }, {200, 100}, {500, 300}, {100, 700}}] 

How can I figure out its area? The docs page does not have any example.

So far I've reached this point with no success:

Needs["Polytopes`"] Area[Polygon[{{0, 200 }, {200, 100}, {500, 300}, {100, 700}}]]; 

AlsoConcerning Area, the documentation states:

Area[polygon] gives the area of polygon polygon, when the edges of polygon have unit length. 

Area[polygon]
$\ \ \ \ \ $ gives the area of polygon polygon, when the edges of polygon have unit length.

So it is possible that my question really should be how to set unit length on edges of polygon  ?

My appreciation.

How to calculate an area of polygon by its coordinates?

I have polygon Polygon[{{0, 200 }, {200, 100}, {500, 300}, {100, 700}}]. How can I figure out its area? The docs page does not have any example.

So far I've reached this point with no success:

Needs["Polytopes`"] Area[Polygon[{{0, 200 }, {200, 100}, {500, 300}, {100, 700}}]]; 

Also the documentation states:

Area[polygon] gives the area of polygon polygon, when the edges of polygon have unit length. 

So it is possible that my question really should be how to set unit length on edges of polygon  ?

My appreciation.

How do I calculate the area of a polygon given its coordinates?

I have a polygon:

Polygon[{{0, 200 }, {200, 100}, {500, 300}, {100, 700}}] 

How can I figure out its area? The docs page does not have any example.

So far I've reached this point with no success:

Needs["Polytopes`"] Area[Polygon[{{0, 200 }, {200, 100}, {500, 300}, {100, 700}}]]; 

Concerning Area, the documentation states:

Area[polygon]
$\ \ \ \ \ $ gives the area of polygon polygon, when the edges of polygon have unit length.

So it is possible that my question really should be how to set unit length on edges of polygon?

Tweeted twitter.com/#!/StackMma/status/372512828118560768
Source Link
d.k
  • 485
  • 4
  • 9

How to calculate an area of polygon by its coordinates?

I have polygon Polygon[{{0, 200 }, {200, 100}, {500, 300}, {100, 700}}]. How can I figure out its area? The docs page does not have any example.

So far I've reached this point with no success:

Needs["Polytopes`"] Area[Polygon[{{0, 200 }, {200, 100}, {500, 300}, {100, 700}}]]; 

Also the documentation states:

Area[polygon] gives the area of polygon polygon, when the edges of polygon have unit length. 

So it is possible that my question really should be how to set unit length on edges of polygon ?

My appreciation.