R/myf2.R

Defines functions myf2

#' @title creating myf2
#'
#' @param x
#' @return x^2 - the value of the input to the second power
#' @export
#'
#' @examples if the given x= 3, then the output of the function would be 9
myf2 = function(x) {x^2}
pisc0001/UploadF documentation built on Nov. 22, 2020, 10:20 a.m.