This is the tgamma from the boost library
uppergamma(a, z)
a | The numeric 'a' parameter in the upper incomplete gamma |
---|---|
z | The numeric 'z' parameter in the upper incomplete gamma |
uppergamma results
The uppergamma function is given by:
\(uppergamma(a, z) = \int_{z}^{\infty}t^{a-1}\cdot e^{-t} dt\)
Matthew L. Fidler
uppergamma(1, 3)
#> [1] 0.04978707
uppergamma(1:3, 3)
#> [1] 0.04978707 0.19914827 0.84638016
uppergamma(1, 1:3)
#> [1] 0.36787944 0.13533528 0.04978707