janoschekJanoschek's Growth Curve |
![]() |
This information is part of the Business Simulation Library (BSL). Please support this work and ► donate.
This function models Janoschek's growth curve [19] given the real input x and the specifying real inputs b, l, k, d
. The formula for the real output y is:
y := 1 - (l - b) * exp(-k * x ^ d);
Functions.janoschek(x, b, l, k, d);
BusinessSimulation.Functions.janoschek(2, b = 0, l = 2, k = 2, d = 1); // 1.963369
x |
Type: Real Description: x-Value |
---|---|
b |
Type: Real Description: Lower asymptote |
l |
Type: Real Description: Upper asymptote |
k |
Type: Real Description: Growth rate |
d |
Type: Real Description: Control of abscissa for the point of inflection |
y |
Type: Real |
---|
Inline = true
in v2.1.0.