Learn R Programming

chemdeg (version 0.1.2)

FOMTm: 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)

Value

Returns calculated values using the formula of FOMT model

It can be used inside the function nls as the RHS of the formula.

Arguments

t

time

k

average number of hits per time unit

m

minimum number of hits required to degrade the molecule

See Also

FOMT(), par_est_FOMT(), stats::nls()

Examples

Run this code
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