📄 specfunc-laguerre.texi
字号:
@cindex Laguerre functions@cindex confluent hypergeometric functionThe generalized Laguerre polynomials are defined in terms of confluenthypergeometric functions as@c{$L^a_n(x) = ((a+1)_n / n!) {}_1F_1(-n,a+1,x)$}@math{L^a_n(x) = ((a+1)_n / n!) 1F1(-n,a+1,x)}, and are sometimes referred to as theassociated Laguerre polynomials. They are related to the plainLaguerre polynomials @math{L_n(x)} by @math{L^0_n(x) = L_n(x)} and @c{$L^k_n(x) = (-1)^k (d^k/dx^k) L_{(n+k)}(x)$}@math{L^k_n(x) = (-1)^k (d^k/dx^k) L_(n+k)(x)}. Formore information see Abramowitz & Stegun, Chapter 22.The functions described in this section aredeclared in the header file @file{gsl_sf_laguerre.h}. @deftypefun double gsl_sf_laguerre_1 (double @var{a}, double @var{x})@deftypefunx double gsl_sf_laguerre_2 (double @var{a}, double @var{x})@deftypefunx double gsl_sf_laguerre_3 (double @var{a}, double @var{x})@deftypefunx int gsl_sf_laguerre_1_e (double @var{a}, double @var{x}, gsl_sf_result * @var{result})@deftypefunx int gsl_sf_laguerre_2_e (double @var{a}, double @var{x}, gsl_sf_result * @var{result})@deftypefunx int gsl_sf_laguerre_3_e (double @var{a}, double @var{x}, gsl_sf_result * @var{result})These routines evaluate the generalized Laguerre polynomials@math{L^a_1(x)}, @math{L^a_2(x)}, @math{L^a_3(x)} using explicitrepresentations.@comment Exceptional Return Values: none@end deftypefun@deftypefun double gsl_sf_laguerre_n (const int @var{n}, const double @var{a}, const double @var{x})@deftypefunx int gsl_sf_laguerre_n_e (int @var{n}, double @var{a}, double @var{x}, gsl_sf_result * @var{result})These routines evaluate the generalized Laguerre polynomials@math{L^a_n(x)} for @math{a > -1}, @c{$n \ge 0$}@math{n >= 0}.@comment Domain: a > -1.0, n >= 0@comment Evaluate generalized Laguerre polynomials.@comment Exceptional Return Values: GSL_EDOM@end deftypefun
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -