SpecialFunctions.jl
SpecialFunctions.jl copied to clipboard
Special mathematical functions in Julia
I added function to calculate + polylogarithm + bernoulli polynomials (and numbers) + harmonic numbers The latter two added because they are needed either in calculations, or in tests, and...
``` julia> x 0.22919536f0 julia> besseli(2,x) 0.006595105469050567 ```
It's likely I haven't met proper guidelines for style/documentation, so please verify those when reviewing the pull request.
The list of functions at http://juliamath.github.io/SpecialFunctions.jl/latest/ doesn't cover all the implemented functions. For example, `polygamma` is not documented although it is available. Also the ordering of functions in the table...
The description is a copy of that from the previous line.
Associated Legendre polynomials are requested https://en.wikipedia.org/wiki/Associated_Legendre_polynomials
[Spherical harmonics](https://en.wikipedia.org/wiki/Spherical_harmonics#Real_form) are requested.
Hello everyone! As I wrote in issue #124, I tried to implement an evaluation of Legendre Polynomials. As there are derivatives, I used a closed form, as found here: https://en.wikipedia.org/wiki/Legendre_polynomials...
The documentation of this package leaves a lot to be desired. Some ideas: - Split it up into obvious sections (perhaps along the lines of the [DLMF](https://dlmf.nist.gov/)) - Document the...
Translate most functions in erf.jl except for functions with the BigFloat input. The code is directly translated from apple's libm for erf(x::Float64), erfc(x::Float64) and libopenspecfun for the other functions. The...