R/myF.R

Defines functions myF

Documented in myF

#' Square Function
#'
#'Takes a vector and returns a vector of squared components.
#'
#' @param x
#'
#' @return a vector of squared components in the form of a vector
#' @export
#'
#' @examples
myF <- function(x)
{
  x^2
}
gkrhines/MATH4753P1 documentation built on Nov. 24, 2020, 11:33 p.m.