Function to select DE given model name
Usage
hmde_model_des(model = NULL)
Arguments
- model
character string model name
Value
DE function corresponding to specific model
Examples
# basic usage of hmde_model_des
hmde_model_des("constant_single_ind")
#> function (y = NULL, pars = NULL)
#> {
#> return(pars[[1]])
#> }
#> <bytecode: 0x55700033b310>
#> <environment: namespace:hmde>