MonolixSuite in R
Breadcrumbs

setCAInitialValues

[PKanalix] Set the initial values of parameters for the compartmental analysis

Set the initial values of parameters for the compartmental analysis.

Usage

R
setCAInitialValues(initialValues)

Arguments

initialValues a list of lists. For each parameter, a list specifies:"value"(double)Initial value to use. Must be in the limits in case of bounded constraint."constraint"(character)Possible values are "none", "positive" or "bounded"."limits"(vector of doubles)[optional] Limits in case of bounded constraint.

See also

getCAInitialValues

Examples

R
if (FALSE) {
  setCAInitialValues(list(Cl=list(value=0.4, constraint = "none"), V=list(value=0.5, constraint="positive"), ka=list(value=0.04, constraint="bounded", limits=c(0, 1))))
}