R/kappaFun.R

Defines functions kappaFun

Documented in kappaFun

#' Anonymous function approximating the death rate
#'
#' @param a parameter vector
#' @param t time vector
#'
#'@return No return value, called for side effects

kappaFun = function(a, t) {a[1] / (exp(a[2]*(t-a[3])))}

Try the genSEIR package in your browser

Any scripts or data that you put into this service are public.

genSEIR documentation built on July 12, 2021, 5:07 p.m.