Processing math: 100%
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_sh_legendre

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

Evaluate shifted Legendre polynomial at a point.

These polynomials are defined as

Pn(x)=Pn(2x1)

where Pn is a Legendre polynomial.

Parameters:

n : array_like

Degree of the polynomial. If not an integer, the value is determined via the relation to eval_legendre.

x : array_like

Points at which to evaluate the shifted Legendre polynomial

Returns:

P : ndarray

Values of the shifted Legendre polynomial

See also

roots_sh_legendre
roots and quadrature weights of shifted Legendre polynomials
sh_legendre
shifted Legendre polynomial object
eval_legendre
evaluate Legendre polynomials
numpy.polynomial.legendre.Legendre
Legendre series