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.lpmv¶
- scipy.special.lpmv(m, v, x) = <ufunc 'lpmv'>¶
Associated Legendre function of integer order and real degree.
Defined as
Pmv=(−1)m(1−x2)m/2dmdxmPv(x)where
Pv=∞∑k=0(−v)k(v+1)k(k!)2(1−x2)kis the Legendre function of the first kind. Here (⋅)k is the Pochhammer symbol; see poch.
Parameters: m : array_like
Order (int or float). If passed a float not equal to an integer the function returns NaN.
v : array_like
Degree (float).
x : array_like
Argument (float). Must have |x| <= 1.
Returns: pmv : ndarray
Value of the associated Legendre function.
See also
Notes
Note that this implementation includes the Condon-Shortley phase.
References
[R486] Zhang, Jin, “Computation of Special Functions”, John Wiley and Sons, Inc, 1996.