27#ifndef mx_legendre_hpp
28#define mx_legendre_hpp
32#ifdef MX_INCLUDE_BOOST
33#include <boost/math/special_functions/legendre.hpp>
56#ifdef MX_INCLUDE_BOOST
57 return boost::math::legendre_p<T>( n, x );
60 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
61 "legendre_p<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
67float legendre_p<float>(
int n,
float x );
70double legendre_p<double>(
int n,
double x );
73long double legendre_p<long double>(
int n,
long double x );
89 return sqrt( (
static_cast<T
>( 2 * n + 1 ) ) /
static_cast<T
>( 2 ) ) *
legendre_p<T>( n, x );
T legendre_p(int n, T x)
Legendre Polynomials.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
T orthoNormalLegendre(int n, T x)
The orthonormal Legendre polynomials.