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
Copy file name to clipboardExpand all lines: docs/src/index.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,11 @@ libraries.
40
40
|[`besselix(nu,z)`](@ref SpecialFunctions.besselix) | scaled modified Bessel function of the first kind of order `nu` at `z`|
41
41
|[`besselk(nu,z)`](@ref SpecialFunctions.besselk) | modified [Bessel function](https://en.wikipedia.org/wiki/Bessel_function) of the second kind of order `nu` at `z`|
42
42
|[`besselkx(nu,z)`](@ref SpecialFunctions.besselkx) | scaled modified Bessel function of the second kind of order `nu` at `z`|
43
+
|[`gamma(x)`](@ref SpecialFunctions.gamma) |[gamma function](https://en.wikipedia.org/wiki/Gamma_function) at `x`|
44
+
|[`lgamma(x)`](@ref SpecialFunctions.lgamma) | accurate `log(gamma(x))` for large `x`|
45
+
|[`lfact(x)`](@ref SpecialFunctions.lfact) | accurate `log(factorial(x))` for large `x`; same as `lgamma(x+1)` for `x > 1`, zero otherwise |
46
+
|[`beta(x,y)`](@ref SpecialFunctions.beta) |[beta function](https://en.wikipedia.org/wiki/Beta_function) at `x,y`|
47
+
|[`lbeta(x,y)`](@ref SpecialFunctions.lbeta) | accurate `log(beta(x,y))` for large `x` or `y`|
0 commit comments