R/cube_root.R

Defines functions cube_root

Documented in cube_root

#' Calculate the cube root
#'
#' @param x Numeric value
#' @export

cube_root <- function(x){
  x ^ (1/3)
}
corysauve/r4es documentation built on Dec. 19, 2021, 6:05 p.m.