You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`digamma(x)`](@ref SpecialFunctions.digamma) |[digamma function](https://en.wikipedia.org/wiki/Digamma_function) (i.e. the derivative of `lgamma` at `x`) |
9
+
|[`loggamma(x)`](@ref SpecialFunctions.loggamma(::Number)) | accurate `log(gamma(x))` for large `x`|
10
+
|[`logabsgamma(x)`](@ref SpecialFunctions.logabsgamma) | accurate `log(abs(gamma(x)))` for large `x`|
11
+
|[`logfactorial(x)`](@ref SpecialFunctions.logfactorial) | accurate `log(factorial(x))` for large `x`; same as `loggamma(x+1)` for `x > 1`, zero otherwise |
12
+
|[`digamma(x)`](@ref SpecialFunctions.digamma) |[digamma function](https://en.wikipedia.org/wiki/Digamma_function) (i.e. the derivative of `loggamma` at `x`) |
10
13
|[`invdigamma(x)`](@ref SpecialFunctions.invdigamma) |[invdigamma function](http://bariskurt.com/calculating-the-inverse-of-digamma-function/) (i.e. inverse of `digamma` function at `x` using fixed-point iteration algorithm) |
11
14
|[`trigamma(x)`](@ref SpecialFunctions.trigamma) |[trigamma function](https://en.wikipedia.org/wiki/Trigamma_function) (i.e the logarithmic second derivative of `gamma` at `x`) |
12
-
|[`polygamma(m,x)`](@ref SpecialFunctions.polygamma) |[polygamma function](https://en.wikipedia.org/wiki/Polygamma_function) (i.e the (m+1)-th derivative of the `lgamma` function at `x`) |
15
+
|[`polygamma(m,x)`](@ref SpecialFunctions.polygamma) |[polygamma function](https://en.wikipedia.org/wiki/Polygamma_function) (i.e the (m+1)-th derivative of the `loggamma` function at `x`) |
13
16
|[`gamma(a,z)`](@ref SpecialFunctions.gamma(::Number,::Number)) |[upper incomplete gamma function ``\Gamma(a,z)``](https://en.wikipedia.org/wiki/Incomplete_gamma_function)|
17
+
|[`loggamma(a,z)`](@ref SpecialFunctions.loggamma(::Number,::Number)) | accurate `log(gamma(a,x))` for large arguments |
14
18
|[`gamma_inc(a,x,IND)`](@ref SpecialFunctions.gamma_inc) |[incomplete gamma function ratio P(a,x) and Q(a,x)](https://en.wikipedia.org/wiki/Incomplete_gamma_function) (i.e evaluates P(a,x) and Q(a,x)for accuracy specified by IND and returns tuple (p,q)) |
15
19
|[`beta_inc(a,b,x,y)`](@ref SpecialFunctions.beta_inc) |[incomplete beta function ratio Ix(a,b) and Iy(a,b)](https://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function) (i.e evaluates Ix(a,b) and Iy(a,b) and returns tuple (p,q)) |
16
20
|[`gamma_inc_inv(a,p,q)`](@ref SpecialFunctions.gamma_inc_inv) |[inverse of incomplete gamma function ratio P(a,x) and Q(a,x)](https://en.wikipedia.org/wiki/Incomplete_gamma_function) (i.e evaluates x given P(a,x)=p and Q(a,x)=q |
17
-
|[`loggamma(x)`](@ref SpecialFunctions.loggamma) | accurate `log(gamma(x))` for large `x`|
18
-
|[`logabsgamma(x)`](@ref SpecialFunctions.logabsgamma) | accurate `log(abs(gamma(x)))` for large `x`|
19
-
|[`lgamma(x)`](@ref SpecialFunctions.lgamma) | accurate `log(gamma(x))` for large `x`|
20
-
|[`logfactorial(x)`](@ref SpecialFunctions.logfactorial) | accurate `log(factorial(x))` for large `x`; same as `lgamma(x+1)` for `x > 1`, zero otherwise |
21
21
|[`beta(x,y)`](@ref SpecialFunctions.beta) |[beta function](https://en.wikipedia.org/wiki/Beta_function) at `x,y`|
22
22
|[`logbeta(x,y)`](@ref SpecialFunctions.logbeta) | accurate `log(beta(x,y))` for large `x` or `y`|
23
23
|[`logabsbeta(x,y)`](@ref SpecialFunctions.logabsbeta) | accurate `log(abs(beta(x,y)))` for large `x` or `y`|
0 commit comments