From Jason Turner

[sf.cmath.comp_ellint_3]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpn43_crrp/{from.md → to.md} +17 -0
tmp/tmpn43_crrp/{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),
14
+ \quad \mbox{for $|k| \le 1$}$$ where k is `k` and $\nu$ is `nu`.
15
+
16
+ See also [[sf.cmath.ellint_3]].
17
+