powered by
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)
Returns calculated values using the formula of FOMT model
It can be used inside the function nls as the RHS of the formula.
time
average number of hits per time unit
minimum number of hits required to degrade the molecule
FOMT(), par_est_FOMT(), stats::nls()
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")
Run the code above in your browser using DataLab