R/fweibull7.R

Defines functions `fweibull7`

`fweibull7` <-
function(x, p) {
   ## add zero for p[7] if missing
   if (length(p) == 6) p <- c(p, 0)
  (p[4] + exp(-(x/p[5])^p[6]))*(1-p[1] * exp(-(x/p[2])^p[3])) - p[7]
}

Try the cardidates package in your browser

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

cardidates documentation built on Oct. 8, 2023, 1:06 a.m.