From Jason Turner

[sf.cmath.cyl.bessel.k]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpnsr7zpfl/{from.md → to.md} +40 -0
tmp/tmpnsr7zpfl/{from.md → to.md} RENAMED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Irregular modified cylindrical Bessel functions <a id="sf.cmath.cyl.bessel.k">[[sf.cmath.cyl.bessel.k]]</a>
2
+
3
+ ``` cpp
4
+ double cyl_bessel_k(double nu, double x);
5
+ float cyl_bessel_kf(float nu, float x);
6
+ long double cyl_bessel_kl(long double nu, long double x);
7
+ ```
8
+
9
+ *Effects:* These functions compute the irregular modified cylindrical
10
+ Bessel functions of their respective arguments `nu` and `x`.
11
+
12
+ *Returns:* $$%
13
+ \mathsf{K}_\nu(x) =
14
+ (\pi/2)i^{\nu+1} ( \mathsf{J}_\nu(ix)
15
+ + i \mathsf{N}_\nu(ix)
16
+ )
17
+ =
18
+ \left\{
19
+ \begin{array}{cl}
20
+ \displaystyle
21
+ \frac{\pi}{2}
22
+ \frac{\mathsf{I}_{-\nu}(x) - \mathsf{I}_{\nu}(x)}
23
+ {\sin \nu\pi },
24
+ & \mbox{for $x \ge 0$ and non-integral $\nu$}
25
+ \\
26
+ \\
27
+ \displaystyle
28
+ \frac{\pi}{2}
29
+ \lim_{\mu \rightarrow \nu} \frac{\mathsf{I}_{-\mu}(x) - \mathsf{I}_{\mu}(x)}
30
+ {\sin \mu\pi },
31
+ & \mbox{for $x \ge 0$ and integral $\nu$}
32
+ \end{array}
33
+ \right.$$ where $\nu$ is `nu` and x is `x`.
34
+
35
+ *Remarks:* The effect of calling each of these functions is
36
+ *implementation-defined* if `nu >= 128`.
37
+
38
+ See also [[sf.cmath.cyl.bessel.i]], [[sf.cmath.cyl.bessel.j]],
39
+ [[sf.cmath.cyl.neumann]].
40
+