R/power.R

#' Square a number
#' 
#' Takes in any value and squares
#' @param x A numeric value to be squared
#' @return The square of the input
#' @export
square <- function(x) {
 return(x^2) 
}
brunocarlin/forecast.bonsai documentation built on May 3, 2019, 5:45 p.m.