Skip to content

Commit 971e35e

Browse files
szcf-weiyasimonbyrne
authored andcommitted
docs for [l]gamma, [l]beta and lfact (#113)
* docs for `[l]gamma`, `[l]beta` and `lfact` `[l]gamma`, `[l]beta` and `lfact` have been moved to this module from `base` module (#92 ), but the docs have not been updated yet. I added their docs from [Docs for Julia v0.6.1](https://docs.julialang.org/en/v0.6.1/manual/mathematical-operations/#Special-functions-1). * Update index.md
1 parent b16387f commit 971e35e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docs/src/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ libraries.
4040
| [`besselix(nu,z)`](@ref SpecialFunctions.besselix) | scaled modified Bessel function of the first kind of order `nu` at `z` |
4141
| [`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` |
4242
| [`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` |
4348

4449
## Installation
4550

0 commit comments

Comments
 (0)