summaryrefslogtreecommitdiff
path: root/R/DFOP.R
blob: 4cac735c45ea840c50cae04313c4c720db1f3e37 (plain) (blame)
1
2
3
4
5
DFOP <- function(t, parent.0, k1, k2, g)
{
	parent = g * parent.0 * exp(-k1 * t) +
		 (1 - g) * parent.0 * exp(-k2 * t)
}

Contact - Imprint