FOMTm {chemdeg} | R Documentation |
First-Order Multi-Target model
Description
Call the function to return the formula of the Single-Hit Multi-Target model (FOMT):
1-(1-e^{-k\,t})^n
Usage
FOMTm(t, k, m)
Arguments
t |
time |
k |
average number of hits per time unit |
m |
minimum number of hits required to degrade the molecule |
Value
Returns calculated values using the formula of FOMT model
It can be used inside the function nls as the RHS of the formula.
See Also
FOMT()
, par_est_FOMT()
, stats::nls()
Examples
t <- seq(0, 100, by = 1)
k <- 0.1
n <- 200
y <- FOMTm(t, k, n)
plot(t, y, type = "l")
[Package chemdeg version 0.1.4 Index]