Laguerre-polynomials
C++ functions which evaluate Laguerre polynomials
L0(x):
template <class T> T L0(const T& x);
L1(x):
template <class T> T L1(const T& x);
Ln(x):
template <class T> T Ln(unsigned int n, const T& x);
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upType | Name | Latest commit message | Commit time |
---|---|---|---|
Failed to load latest commit information. | |||
![]() |
example | ||
![]() |
tests | ||
![]() |
.gitignore | ||
![]() |
README.md | ||
![]() |
laguerre.h |
C++ functions which evaluate Laguerre polynomials
L0(x):
template <class T> T L0(const T& x);
L1(x):
template <class T> T L1(const T& x);
Ln(x):
template <class T> T Ln(unsigned int n, const T& x);