R/complexR.R

#' butterfly
#'
#' This function returns the sum of two numbers.
#' @param <a> first addend
#' @param <b> second addend
#' @keywords add
#' @export
#' @examples
#' butterfly(2,3)

butterfly <- function (a,b) {
  return(a + b)
}

#' cusp
#'
#' This function returns the sum of two numbers.
#' @param <a> first addend
#' @param <b> second addend
#' @keywords add
#' @export
#' @examples
#' cusp(2,3)

cusp <- function (a,b) {
  return(a + b)
}

#' fold
#'
#' This function returns the sum of two numbers.
#' @param <a> first addend
#' @param <b> second addend
#' @keywords add
#' @export
#' @examples
#' fold(2,3)

fold <- function (a,b) {
  return(a + b)
}

#' networkEntropy
#'
#' This function returns the sum of two numbers.
#' @param <a> first addend
#' @param <b> second addend
#' @keywords add
#' @export
#' @examples
#' networkEntropy(2,3)

networkEntropy <- function (a,b) {
  return(a + b)
}

#' orbde
#'
#' This function returns the sum of two numbers.
#' @param <a> first addend
#' @param <b> second addend
#' @keywords add
#' @export
#' @examples
#' orbde(2,3)

orbde <- function (a,b) {
  return(a + b)
}

#' swallowtail
#'
#' This function returns the sum of two numbers.
#' @param <a> first addend
#' @param <b> second addend
#' @keywords add
#' @export
#' @examples
#' swallowtail(2,3)

swallowtail <- function (a,b) {
  return(a + b)
}

#' transitionNetwork
#'
#' This function returns the sum of two numbers.
#' @param <a> first addend
#' @param <b> second addend
#' @keywords add
#' @export
#' @examples
#' transitionNetwork(2,3)

transitionNetwork <- function (a,b) {
  return(a + b)
}

#' windowedEntropy
#'
#' This function returns the sum of two numbers.
#' @param <a> first addend
#' @param <b> second addend
#' @keywords add
#' @export
#' @examples
#' windowedEntropy(2,3)

windowedEntropy <- function (a,b) {
  return(a + b)
}
barneyricca/complex documentation built on Aug. 22, 2020, 12:03 a.m.