R/unitconversion.radian.to.degree.R

Defines functions unitconversion.radian.to.degree

Documented in unitconversion.radian.to.degree

#' Unit Conversion - Angles - Radians to Degrees 
#' 
#' Performs a conversion of angle measures from radians to degrees. 
#'
#' @param x Vector - Values in units of radians
#'
#' @return x, but converted to degrees 
unitconversion.radian.to.degree <- function(
  x = 1
) {
  x * 360 / (2*constants.pi)
}
burrm/lolcat documentation built on Sept. 15, 2023, 11:35 a.m.