Stan Math Library
2.8.0
reverse mode automatic differentiation
Main Page
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerator
Friends
Macros
Groups
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 <boost/math/special_functions/bessel.hpp>
5
6
namespace
stan {
7
namespace
math {
8
38
template
<
typename
T2>
39
inline
T2
40
bessel_second_kind
(
const
int
v,
const
T2 z) {
41
return
boost::math::cyl_neumann(v, z);
42
}
43
44
}
45
}
46
47
#endif
stan::math::bessel_second_kind
fvar< T > bessel_second_kind(int v, const fvar< T > &z)
Definition:
bessel_second_kind.hpp:15
[
Stan Home Page
]
© 2011–2015, Stan Development Team.