R/g.R

Defines functions g

Documented in g

##' Subtract two numbers (Description)
##'
##' We want to Subtract two numbers, blalala... (Details)
##' @title Subtract two numbers
##' @param x first number
##' @param y second number
##' @return x - y
##' @author xiaoxiao
##' @export
##' @examples
##' g(2,1)
##' 
g <- function(x, y) x - y
xxwen12/gatorPKG documentation built on Dec. 23, 2021, 7:14 p.m.