R/testfunction.R

Defines functions testfunction

Documented in testfunction

#' @title testfunction
#' @param X numeric value ##you need to have the variable first and then the description
#' @description this function does X*X
#' @return X*X

testfunction = function(X)
{
  
  y=X*X
  return(y)
  
}
knguyen63/Schistosomiasis-in-R documentation built on May 20, 2019, 12:52 p.m.