triangleArea | R Documentation |
calculate Area of a planar triangle
triangleArea(x, y, digits = 3)
x |
Vector with 3 values (x coordinates of triangle corners) |
y |
Ditto for y. |
digits |
Number of digits the result is rounded to. DEFAULT: 3) |
Numeric
Berry Boessenkool, berry-b@gmx.de, 2011
berryFunctions::distance
a <- c(1,5.387965,9); b <- c(1,1,5)
plot(a[c(1:3,1)], b[c(1:3,1)], type="l", asp=1)#; grid()
triangleArea(a,b)
#triangleArea(a,b[1:2])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.