vb_lengths: von Bertalanffy growth function.

Description Usage Arguments Value Examples

View source: R/vb_lengths.R

Description

vb_lengths returns the predicted length-at-age for given named set of parameters for the von Bertalanffy growth function:

l = L_{∞} (1 - e^{-k(a - t_0)})

Usage

1
vb_lengths(theta, age)

Arguments

theta

A numeric vector with named values "linf", "k", "t0".

age

A numeric vector of ages.

Value

Predicted length-at-age.

Examples

1
vb_lengths(theta = c("linf" = 30,"k" = 0.2,"t0" = -1), age = 0:10)

lhmixr documentation built on May 2, 2019, 11:05 a.m.

Related to vb_lengths in lhmixr...