From Jason Turner

[sf.cmath.laguerre]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpxa0y7j8f/{from.md → to.md} +20 -0
tmp/tmpxa0y7j8f/{from.md → to.md} RENAMED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Laguerre polynomials <a id="sf.cmath.laguerre">[[sf.cmath.laguerre]]</a>
2
+
3
+ ``` cpp
4
+ double laguerre(unsigned n, double x);
5
+ float laguerref(unsigned n, float x);
6
+ long double laguerrel(unsigned n, long double x);
7
+ ```
8
+
9
+ *Effects:* These functions compute the Laguerre polynomials of their
10
+ respective arguments `n` and `x`.
11
+
12
+ *Returns:* $$%
13
+ \mathsf{L}_n(x) =
14
+ \frac{e^x}{n!} \frac{ \mathsf{d} ^ n}
15
+ { \mathsf{d}x ^ n} \, (x^n e^{-x}),
16
+ \quad \mbox{for $x \ge 0$}$$ where n is `n` and x is `x`.
17
+
18
+ *Remarks:* The effect of calling each of these functions is
19
+ *implementation-defined* if `n >= 128`.
20
+