How to use Monte Carlo simulation to calculate the area of polygon?

7 vues (au cours des 30 derniers jours)
aposta95
aposta95 le 14 Mai 2022
Modifié(e) : aposta95 le 15 Mai 2022
Hi, I want to use Monte Carlo simulation to calculate the area of polygon.
The polygon area is defined with longitude and latitude. (in degrees)
I've found the bounding box of the polygon, but I have no idea how to apply Monte Carlo to randomly create dots and caculate the area.
Can anyone help calculating the area of this polygon using Monte Carlo simulation?

Réponses (1)

Torsten
Torsten le 14 Mai 2022
Randomly create points inside the bounding box.
Decide which of the points are inside (P_i) and which of the points are outside (P_a) the polygon.
If the area of the bounding box is A, an approximation for the area A_p of the polygon is
A_p = A*#P_i/(#P_i + #P_a)

Catégories

En savoir plus sur Elementary Polygons dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by