From Jason Turner

[sf.cmath.comp_ellint_2]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpw3t10xhl/{from.md → to.md} +18 -0
tmp/tmpw3t10xhl/{from.md → to.md} RENAMED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Complete elliptic integral of the second kind <a id="sf.cmath.comp_ellint_2">[[sf.cmath.comp_ellint_2]]</a>
2
+
3
+ ``` cpp
4
+ double comp_ellint_2(double k);
5
+ float comp_ellint_2f(float k);
6
+ long double comp_ellint_2l(long double k);
7
+ ```
8
+
9
+ *Effects:* These functions compute the complete elliptic integral of the
10
+ second kind of their respective arguments `k`.
11
+
12
+ *Returns:* $$%
13
+ \mathsf{E}(k) =
14
+ \mathsf{E}(k, \pi / 2),
15
+ \quad \mbox{for $|k| \le 1$}$$ where k is `k`.
16
+
17
+ See also [[sf.cmath.ellint_2]].
18
+