R/DFOP.R

Defines functions DFOP

Documented in DFOP

DFOP <- function(t, parent.0, k1, k2, g)
{
	parent = g * parent.0 * exp(-k1 * t) +
		 (1 - g) * parent.0 * exp(-k2 * t)
}

Try the kinfit package in your browser

Any scripts or data that you put into this service are public.

kinfit documentation built on May 30, 2017, 4:59 a.m.