Examples/a.R

#' Multiplies two numbers and returns the result
#' @export
#' @title Multiplies two numbers and returns the result
#' @name aFunction
#' @param a A number I want to multiply by something
#' @param b A multiplying constant
#' @return A number - the product of a and b
#' @author Paul Newcombe
aFunction <- function(a, b) {
out <- a*b
return(out)
}
bwtian/Rtemplate documentation built on May 13, 2019, 9:24 a.m.