Stan
2.5.0
probability, sampling & optimization
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
stan
math
functions
modified_bessel_second_kind.hpp
Go to the documentation of this file.
1
#ifndef STAN__MATH__FUNCTIONS__MODIFIED_BESSEL_SECOND_KIND_HPP
2
#define STAN__MATH__FUNCTIONS__MODIFIED_BESSEL_SECOND_KIND_HPP
3
4
#include <boost/math/special_functions/bessel.hpp>
5
6
namespace
stan {
7
namespace
math {
8
40
template
<
typename
T2>
41
inline
T2
42
modified_bessel_second_kind
(
const
int
v,
const
T2 z) {
43
return
boost::math::cyl_bessel_k(v,z);
44
}
45
46
}
47
}
48
49
#endif
stan::math::modified_bessel_second_kind
T2 modified_bessel_second_kind(const int v, const T2 z)
Definition:
modified_bessel_second_kind.hpp:42
[
Stan Home Page
]
© 2011–2014, Stan Development Team.