Defines a Gompertz equation: y' = ayln(K/y).
Growth rate
Carrying capacity (K > 0)
const ode = Chalkboard.diff.Gompertz(1, 100);const derivative = ode.rule(0, [10]); // Evaluates Gompertz growth Copy
const ode = Chalkboard.diff.Gompertz(1, 100);const derivative = ode.rule(0, [10]); // Evaluates Gompertz growth
Defines a Gompertz equation: y' = ayln(K/y).