tmp/tmpv3e7qb7u/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Associated Laguerre polynomials <a id="sf.cmath.assoc.laguerre">[[sf.cmath.assoc.laguerre]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
double assoc_laguerre(unsigned n, unsigned m, double x);
|
| 5 |
+
float assoc_laguerref(unsigned n, unsigned m, float x);
|
| 6 |
+
long double assoc_laguerrel(unsigned n, unsigned m, long double x);
|
| 7 |
+
```
|
| 8 |
+
|
| 9 |
+
*Effects:* These functions compute the associated Laguerre polynomials
|
| 10 |
+
of their respective arguments `n`, `m`, and `x`.
|
| 11 |
+
|
| 12 |
+
*Returns:* $$\mathsf{L}_n^m(x) =
|
| 13 |
+
(-1)^m \frac{\mathsf{d} ^ m}{\mathsf{d}x ^ m} \, \mathsf{L}_{n+m}(x)
|
| 14 |
+
\text{ ,\quad for $x \ge 0$,}$$ where n is `n`, m is `m`, and x is
|
| 15 |
+
`x`.
|
| 16 |
+
|
| 17 |
+
*Remarks:* The effect of calling each of these functions is
|
| 18 |
+
*implementation-defined* if `n >= 128` or if `m >= 128`.
|
| 19 |
+
|