- Contributors: JSorngard, Axect, ethanbarry
- Related issue: #12
- Related PRs
- Newly added dependencies
- Implement Dawson's integral (#9) (Thanks to ethanbarry)
dawson(x: f64) -> f64
: Dawson's integral
- Implement Bessel & Modified Bessel functions
- Integer order
Jn(n: usize, x: f64) -> f64
: Bessel function of the first kindYn(n: usize, x: f64) -> f64
: Bessel function of the second kindIn(n: usize, x: f64) -> f64
: Modified Bessel function of the first kindKn(n: usize, x: f64) -> f64
: Modified Bessel function of the second kind
- Fractional order
besseljy(nu: f64, x: f64) -> (f64, f64, f64, f64)
: Bessel functions (include derivatives)besselik(nu: f64, x: f64) -> (f64, f64, f64, f64)
: Modified Bessel functions (include derivatives)Jnu_Ynu(nu: f64, x: f64) -> (f64, f64)
: Bessel functionsInu_Knu(nu: f64, x: f64) -> (f64, f64)
: Modified Bessel functions
- Integer order
- Add
docs.rs
badge to README.md - Add latex support to
gammp
andgammq
in docs
- Update README.md
- Fix typo (
gammap
->gammp
,gammaq
->gammq
)
- Fix typo (
- Fix bugs (#4)
- LICENSE Update : BSD-3-Clause -> MIT or Apache-2.0
- Make public
ln_gamma
. (Thanks to rw)