R/myf.R

Defines functions myf

Documented in myf

#' @title A start for a function
#'
#' @description Starter function for MATH4773CLAG
#'
#' @param x a vector of data
#'
#' @return a vector whose components are squared
#' @export
#'
#' @examples
#' myf(1:10)
myf = function(x){
  x^2
}
cil0834/MATH4773CLAG documentation built on Sept. 26, 2020, 12:03 a.m.