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

1.2 KiB
Raw Permalink Blame History

[sf.cmath.laguerre]

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.17 Laguerre polynomials [sf.cmath.laguerre]

🔗

floating-point-type laguerre(unsigned n, floating-point-type x); float laguerref(unsigned n, float x); long double laguerrel(unsigned n, long double x);

1

#

Effects: These functions compute the Laguerre polynomials of their respective argumentsn and x.

2

#

Returns: Ln(x), where Ln is given by Formula 29.37,n is n, andx is x.

Ln(x)=exn!dndxn(xne−x) , for x≥0(29.37)

3

#

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