R/testfunction.R

Defines functions testfunction

Documented in testfunction

#' @title testfunction
#' @param numberic value
#' @return X*X
#' 
#' 


testfunction = function(X)
{
  
  y = X * X
  return(y)
  
}
mattphan/Testing documentation built on May 21, 2019, 1:25 p.m.