Loading [MathJax]/jax/output/HTML-CSS/jax.js
SciPy

This is documentation for an old release of SciPy (version 0.19.0). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.special.eval_laguerre

scipy.special.eval_laguerre(n, x, out=None) = <ufunc 'eval_laguerre'>

Evaluate Laguerre polynomial at a point.

The Laguerre polynomials can be defined via the confluent hypergeometric function 1F1 as

Ln(x)=1F1(n,1,x).

When n is an integer the result is a polynomial of degree n.

Parameters:

n : array_like

Degree of the polynomial. If not an integer the result is determined via the relation to the confluent hypergeometric function.

x : array_like

Points at which to evaluate the Laguerre polynomial

Returns:

L : ndarray

Values of the Laguerre polynomial

See also

roots_laguerre
roots and quadrature weights of Laguerre polynomials
laguerre
Laguerre polynomial object
numpy.polynomial.laguerre.Laguerre
Laguerre series
eval_genlaguerre
evaluate generalized Laguerre polynomials