double assoc_laguerre( unsigned int n, unsigned int m, double x ); float assoc_laguerre( unsigned int n, unsigned int m, float x ); long double assoc_laguerre( unsigned int n, unsigned int m, long double x ); float assoc_laguerref( unsigned int n, unsigned int m, float x ); long double assoc_laguerrel( unsigned int n, unsigned int m, long double x ); | (1) | (since C++17) |
double assoc_laguerre( unsigned int n, unsigned int m, IntegralType x ); | (2) | (since C++17) |
double
.n | - | the degree of the polymonial, a value of unsigned integer type |
m | - | the order of the polynomial, a value of unsigned integer type |
x | - | the argument, a value of a floating-point or integral type |
x
, that is \((-1)^m \: \frac{ \mathsf{d} ^ m}{ \mathsf{d}x ^ m} \, \mathsf{L}_{n+m}(x)\)(-1)mdm |
dxm |
std::laguerre(n+m, x)
). Errors may be reported as specified in math_errhandling.
x
is negative, a domain error may occur n
or m
is greater or equal to 128, the behavior is implementation-defined. Implementations that do not support C++17, but support ISO 29124:2010, provide this function if __STDCPP_MATH_SPEC_FUNCS__
is defined by the implementation to a value at least 201003L and if the user defines __STDCPP_WANT_MATH_SPEC_FUNCS__
before including any standard library headers.
Implementations that do not support ISO 29124:2010 but support TR 19768:2007 (TR1), provide this function in the header tr1/cmath
and namespace std::tr1
.
An implementation of this function is also available in boost.math.
The associated Laguerre polynomials are the polynomial solutions of the equation \(x\ddot{y} + (m+1-x)\dot{y} + ny = 0\)xy,,
+(m+1-x)y,
+ny = 0.
The first few are:
1 |
2 |
1 |
6 |
#include <cmath> #include <iostream> double L1(unsigned m, double x) { return -x + m + 1; } double L2(unsigned m, double x) { return 0.5*(x*x-2*(m+2)*x+(m+1)*(m+2)); } int main() { // spot-checks std::cout << std::assoc_laguerre(1, 10, 0.5) << '=' << L1(10, 0.5) << '\n' << std::assoc_laguerre(2, 10, 0.5) << '=' << L2(10, 0.5) << '\n'; }
Output:
10.5=10.5 60.125=60.125
(C++17)(C++17)(C++17) | Laguerre polynomials (function) |
Weisstein, Eric W. "Associated Laguerre Polynomial." From MathWorld--A Wolfram Web Resource.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/numeric/special_math/assoc_laguerre