R/squareroot.R

Defines functions squareroot

Documented in squareroot

#' Square root a number
#'
#' Takes in any numeric value and square root it
#' @param x A numeric value to be square rooted
#' @return The square root of the input
#' @export
squareroot <- function(x){
  return(x^(1/2))
}
HoussemGu/RPackage documentation built on May 22, 2019, 2:05 p.m.