Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmert/associatedlegendrepolynomials.jl
A library for calculating the Associated Legendre polynomials
https://github.com/jmert/associatedlegendrepolynomials.jl
associated-legendre-polynomials julia julialang legendre-polynomials special-functions
Last synced: 13 days ago
JSON representation
A library for calculating the Associated Legendre polynomials
- Host: GitHub
- URL: https://github.com/jmert/associatedlegendrepolynomials.jl
- Owner: jmert
- License: mit
- Created: 2020-04-18T17:57:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-19T16:57:36.000Z (5 months ago)
- Last Synced: 2024-10-31T17:26:12.698Z (20 days ago)
- Topics: associated-legendre-polynomials, julia, julialang, legendre-polynomials, special-functions
- Language: Julia
- Homepage: https://jmert.github.io/AssociatedLegendrePolynomials.jl/
- Size: 979 KB
- Stars: 20
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# AssociatedLegendrePolynomials.jl — Calculating Associated Legendre Polynomials
| **Documentation** | **Build Status** | **DOI** |
|:-------------------------------------------------------------------------:|:----------------------------------------------------:|:-----------------------:|
| [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] | [![][ci-img]][ci-url][![][codecov-img]][codecov-url] | [![][doi-img]][doi-url] |AssociatedLegendrePolynomials.jl is a library for computing the Associated Legendre Polynomials.
Design goals of this package include:
* Native Julia implementation of core routines.
* Numerical stability and efficiency.
* Parallelism and efficient memory sharing.
### Installation and usage
Installation and loading is as easy as:
```
pkg> add AssociatedLegendrePolynomialsjulia> using AssociatedLegendrePolynomials
# or on julia >= v1.6, importing to a shorter name is possible:
julia> import AssociatedLegendrePolynomials as Legendre
julia> using .Legendre
```[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
[docs-stable-url]: https://jmert.github.io/AssociatedLegendrePolynomials.jl/stable
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
[docs-dev-url]: https://jmert.github.io/AssociatedLegendrePolynomials.jl/dev[ci-img]: https://github.com/jmert/AssociatedLegendrePolynomials.jl/actions
[ci-url]: https://github.com/jmert/AssociatedLegendrePolynomials.jl/workflows/CI/badge.svg[doi-img]: https://zenodo.org/badge/256818644.svg
[doi-url]: https://zenodo.org/badge/latestdoi/256818644[codecov-img]: https://codecov.io/gh/jmert/AssociatedLegendrePolynomials.jl/branch/master/graph/badge.svg
[codecov-url]: https://codecov.io/gh/jmert/AssociatedLegendrePolynomials.jl