Skip to contents

Initialize Parameter Values for the Michaelis Menten Enzyme Kinetic Model

Usage

michaelis_menten_init(
  kcat = function() stats::runif(n = 1, min = 3, max = 5),
  kM = function() stats::runif(n = 1, max = 3, min = 5),
  ...
)

Arguments

kcat

numeric initial value for kcat parameter in the Michaelis Menten model

kM

numeric initial value for the kM parameter in the Michaelis Menten model

...

additional parameter initialization. Each named argument should be a function that returns a numeric or array depending on the dimension of the parameter, see rstan_default_init() to use the rstan default init.

Value

input for [michaelis_menten_model](init = ...) parameter.