Learn R Programming

berryFunctions (version 1.4)

triangleArea: calculate Area of a triangle

Description

calculate Area of a triangle

Usage

triangleArea(x, y, digits = 3)

Arguments

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)

Value

  • Numeric

See Also

distance

Examples

Run this code
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])

Run the code above in your browser using DataLab