Files
2025-10-25 03:02:53 +03:00

1.3 KiB
Raw Permalink Blame History

[sf.cmath.legendre]

29 Numerics library [numerics]

29.7 Mathematical functions for floating-point types [c.math]

29.7.6 Mathematical special functions [sf.cmath]

29.7.6.18 Legendre polynomials [sf.cmath.legendre]

🔗

floating-point-type legendre(unsigned l, floating-point-type x); float legendref(unsigned l, float x); long double legendrel(unsigned l, long double x);

1

#

Effects: These functions compute the Legendre polynomials of their respective argumentsl and x.

2

#

Returns: Pℓ(x), where Pℓ is given by Formula 29.38,l is l, andx is x.

„“(x)=12ℓℓ!dℓdxℓ(x2−1)ℓ , for |x|≤1(29.38)

3

#

Remarks: The effect of calling each of these functions is implementation-defined if l >= 128.