Post Reply 
(48) Shoelace Method For Determining A Polygon's Area
07-14-2018, 03:12 AM
Post: #1
(48) Shoelace Method For Determining A Polygon's Area
Shoelace Method for determining the area enclosed by any polygon. Enter the (X,Y) coordinates of the N polygon corners in a 2xN matrix and run the program. Example enter the following matrix of (X,Y) coordinates:

[[2 5]
[7 10]
[12 20]
[8 12]
[4 3]]

The polygon area calculated by the program is 10.5


Attached File(s)
.pdf  Shoelace Program (HP-48, Gerardo V Lozada.pdf (Size: 43.15 KB / Downloads: 18)
Find all posts by this user
Quote this message in a reply
07-14-2018, 09:39 AM
Post: #2
RE: (48) Shoelace Method For Determining A Polygon's Area
This program works as well for the HP-48:

Code:
\<<
  DUP HEAD +
  2 \<< CROSS \>> DOSUBS
  \GSLIST ABS 2 /
\>>

However the pair of coordinates are expected in a list.

Example:
{
[ 2 5 ]
[ 7 10 ]
[ 12 20 ]
[ 8 12 ]
[ 4 3 ]
}


Area = 10.5
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)