R/myf2.R

Defines functions myf2

Documented in myf2

#' Cube Function
#'
#' @param x component
#'
#' @return a vector of cubed components
#' @export
#'
#' @examples
#' x=1:30; myf2(x)
myf2=function(x){
  x^3
}
MatthewG24/NewProjMSG documentation built on Dec. 31, 2020, 3:14 p.m.