weibull: Single Weibull functions

Description Usage Arguments Details See Also Examples

Description

weibull is the first Weibull function, and weib2 is the second weibull function reversed plus (duration+1) shift.

Usage

1
2
weibull(x, a = 0.14, b = 0.46)
weib2(x, a = 0.14, b = 0.46)

Arguments

x

Minutes, or any x.

a

The lambda in the Weibull function.

b

The gamma in the Weibull function.

Details

The Weibull function is officially defined as

S(t)=e^{-λ t^{γ}}

Here both functions have position shifts. Check the codes for details.

See Also

double.weibull, weibull

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# weibull is currently defined as
function (x, a = 0.14, b = 0.46) 
{
    exp(-a * (x - 1)^b)
  }
  
## weib2 is currently defined as
function (x, a = 0.14, b = 0.46) 
{
    exp(-a * (x + 1)^b)
  }

fzwaeustc/pcrfn documentation built on May 16, 2019, 4:06 p.m.