quadArea | R Documentation |
Calculates the area of a quadrilateral by dividing it into two triangles and applying Heron's formula.
quadArea(x, y)
x |
Numeric vector. |
y |
Numeric vector. |
Numeric (area of a quadrilateral in same units as x
and y
.
x <- c(0, 6, 4, 1)
y <- c(0, 1, 7, 4)
quadArea(x, y)
plot(1, type='n', xlim=c(0, 7), ylim=c(0, 7), xlab='x', ylab='y')
polygon(x, y)
text(x, y, LETTERS[1:4], pos=4)
lines(x[c(1, 3)], y[c(1, 3)], lty='dashed', col='red')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.