From Jason Turner

[sf.cmath.comp.ellint.3]

Diff to HTML by rtfpessoa

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