weibull: Weibull growth model

Description Usage Arguments Author(s) References Examples

Description

Computes the Weibull growth model

y(t) = α - β * exp(-k * t^m)

Usage

1
2
3
weibull(t, alpha, beta, k, m)

weibull.inverse(x, alpha, beta, k, m)

Arguments

t

time

alpha

upper asymptote

beta

growth range

k

growth rate

m

slope of growth

x

size

Author(s)

Daniel Rodriguez

References

D. Fekedulegn, M. Mac Siurtain, and J. Colbert, "Parameter estimation of nonlinear growth models in forestry," Silva Fennica, vol. 33, no. 4, pp. 327-336, 1999.

Examples

1
2
3
4
growth <- weibull(0:10, 10, 0.5, 0.3, 0.5)

# Calculate inverse function
time <- weibull.inverse(growth, 10, 0.5, 0.3, 0.5)

drodriguezperez/growthmodels documentation built on May 15, 2019, 2:42 p.m.