Skip to content

Commit

Permalink
docs for [l]gamma, [l]beta and lfact
Browse files Browse the repository at this point in the history
`[l]gamma`, `[l]beta` and `lfact` have been moved to this module from `base` module (JuliaMath#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).
  • Loading branch information
szcf-weiya authored Aug 26, 2018
1 parent e33062f commit 9d85e18
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ libraries.
| [`besselix(nu,z)`](@ref SpecialFunctions.besselix) | scaled modified Bessel function of the first kind of order `nu` at `z` |
| [`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` |
| [`besselkx(nu,z)`](@ref SpecialFunctions.besselkx) | scaled modified Bessel function of the second kind of order `nu` at `z` |
| [`gamma(x)`](@ref SpecialFunctions.gamma) | [gamma function](https://en.wikipedia.org/wiki/Gamma_function) at `x` |
| [`lgamma(x)`](@ref SpecialFunctions.lgamma) | accurate `log(gamma(x))` for large `x` |
| [`lfact(x)`](@ref SpecialFunctions.lfact) | accurate `log(factorial(x))` for large `x`; same as `lgamma(x+1)` for `x > 1`, zero otherwise |
| [`beta(x,y)`](@ref SpecialFunctions.beta) | [beta function](https://en.wikipedia.org/wiki/Beta_function) at `x,y` |
| [`lbeta(x,y)`](@ref SpecialFunctions.lbeta) | accurate `log(beta(x,y))` for large `x` or `y`

## Installation

Expand Down

0 comments on commit 9d85e18

Please sign in to comment.