R/Square.R

#' Square a number
#'
#' Takes in any numeric value multiples it by its self
#' @param x a numeric value to be raised to the power of 2
#' @return a number submitted squared
#' @export
square <- function(x){
  x^2
}
mhood115/MikeHoodFinal documentation built on May 29, 2019, 11:05 p.m.