FOMTm | R Documentation |
Call the function to return the formula of the Single-Hit Multi-Target model (FOMT):
1-(1-e^{-k\,t})^n
FOMTm(t, k, m)
t |
time |
k |
average number of hits per time unit |
m |
minimum number of hits required to degrade the molecule |
Returns calculated values using the formula of FOMT model
It can be used inside the function nls as the RHS of the formula.
FOMT()
, par_est_FOMT()
, stats::nls()
t <- seq(0, 100, by = 1)
k <- 0.1
n <- 200
y <- FOMTm(t, k, n)
plot(t, y, type = "l")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.