R/h.R

Defines functions h

Documented in h

##' Complex operations on two numbers (Description)
##'
##' We want to do some complex operations on two numbers, blalala... (Details)
##' @title Very complex operation of two numbers
##' @param x first number
##' @param y second number
##' @return (x - y)(x + y)
##' @author Caleb
##' @export
##' @examples
##' h(3,2)
h <- function(x, y) f(x, y) * g(x, y)
samuelanyaso/GatorPKG5 documentation built on Nov. 5, 2019, 6:13 a.m.