R/create_mbd_params.R

Defines functions create_mbd_params

Documented in create_mbd_params

#' Create the MBD parameters
#' @inheritParams default_params_doc
#' @author Richel J.C. Bilderbeek
#' @export
create_mbd_params <- function(
  lambda,
  mu,
  nu,
  q
) {
  mbd_params <- list(
    lambda = lambda,
    mu = mu,
    nu = nu,
    q = q
  )
  becosys::check_mbd_params(mbd_params)
  mbd_params
}
richelbilderbeek/becosys documentation built on Oct. 19, 2020, 9:20 a.m.