Stan Math Library
2.20.0
reverse mode automatic differentiation
stan
math
prim
scal
fun
bessel_second_kind.hpp
Go to the documentation of this file.
1
#ifndef STAN_MATH_PRIM_SCAL_FUN_BESSEL_SECOND_KIND_HPP
2
#define STAN_MATH_PRIM_SCAL_FUN_BESSEL_SECOND_KIND_HPP
3
4
#include <
stan/math/prim/meta.hpp
>
5
#include <boost/math/special_functions/bessel.hpp>
6
7
namespace
stan
{
8
namespace
math {
9
39
template
<
typename
T2>
40
inline
T2
bessel_second_kind
(
int
v,
const
T2 z) {
41
return
boost::math::cyl_neumann(v, z);
42
}
43
44
}
// namespace math
45
}
// namespace stan
46
47
#endif
stan
Definition:
log_sum_exp.hpp:8
meta.hpp
stan::math::bessel_second_kind
fvar< T > bessel_second_kind(int v, const fvar< T > &z)
Definition:
bessel_second_kind.hpp:12
[
Stan Home Page
]
© 2011–2018, Stan Development Team.