1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
//! boost/math/special_functions/hankel.hpp
use crateffi;
/// Cyclic Hankel function of the first kind, *H<sub>ν</sub><sup>(1)</sup>(x)*
///
/// The cyclic Hankel function of the first kind is defined by
///
/// *H<sub>ν</sub><sup>(1)</sup>(x) = J<sub>ν</sub>(x) + i Y<sub>ν</sub>(x)*
///
/// where *J<sub>ν</sub>* and *Y<sub>ν</sub>* are the cyclic Bessel functions of the first and
/// second kinds, [`cyl_bessel_j`](crate::math::cyl_bessel_j) and
/// [`cyl_neumann`](crate::math::cyl_neumann), respectively, and *i* is the imaginary unit.
///
/// See [`cyl_hankel_2`] for the cyclic Hankel function of the second kind.
///
/// Corresponds to `boost::math::cyl_hankel_1` in C++.
/// <https://boost.org/doc/libs/latest/libs/math/doc/html/math_toolkit/hankel/cyl_hankel.html>
/// Cyclic Hankel function of the second kind, *H<sub>ν</sub><sup>(2)</sup>(x)*
///
/// The cyclic Hankel function of the second kind is defined by
///
/// *H<sub>ν</sub><sup>(2)</sup>(x) = J<sub>ν</sub>(x) - i Y<sub>ν</sub>(x)*
///
/// where *J<sub>ν</sub>* and *Y<sub>ν</sub>* are the cyclic Bessel functions of the first and
/// second kinds, [`cyl_bessel_j`](crate::math::cyl_bessel_j) and
/// [`cyl_neumann`](crate::math::cyl_neumann), respectively, and *i* is the imaginary unit.
///
/// See [`cyl_hankel_1`] for the cyclic Hankel function of the first kind.
///
/// Corresponds to `boost::math::cyl_hankel_2` in C++.
/// <https://boost.org/doc/libs/latest/libs/math/doc/html/math_toolkit/hankel/cyl_hankel.html>
/// Spherical Hankel function of the first kind, *h<sub>ν</sub><sup>(1)</sup>(x)*
///
/// The spherical Hankel function of the first kind is defined by
///
/// *h<sub>ν</sub><sup>(1)</sup>(x) = j<sub>ν</sub>(x) + i y<sub>ν</sub>(x)*
///
/// where *j<sub>ν</sub>* and *y<sub>ν</sub>* are the spherical Bessel functions of the first and
/// second kinds, [`sph_bessel`](crate::math::sph_bessel) and
/// [`sph_neumann`](crate::math::sph_neumann), respectively, and *i* is the imaginary unit.
///
/// See [`sph_hankel_2`] for the spherical Hankel function of the second kind.
///
/// Corresponds to `boost::math::sph_hankel_1` in C++.
/// <https://boost.org/doc/libs/latest/libs/math/doc/html/math_toolkit/hankel/sph_hankel.html>
/// Spherical Hankel function of the second kind, *h<sub>ν</sub><sup>(2)</sup>(x)*
///
/// The spherical Hankel function of the second kind is defined by
///
/// *h<sub>ν</sub><sup>(2)</sup>(x) = j<sub>ν</sub>(x) - i y<sub>ν</sub>(x)*
///
/// where *j<sub>ν</sub>* and *y<sub>ν</sub>* are the spherical Bessel functions of the first and
/// second kinds, [`sph_bessel`](crate::math::sph_bessel) and
/// [`sph_neumann`](crate::math::sph_neumann), respectively, and *i* is the imaginary unit.
///
/// See [`sph_hankel_1`] for the spherical Hankel function of the first kind.
///
/// Corresponds to `boost::math::sph_hankel_2` in C++.
/// <https://boost.org/doc/libs/latest/libs/math/doc/html/math_toolkit/hankel/sph_hankel.html>