Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/fun/constants.hpp>
#include <stan/math/prim/fun/modified_bessel_first_kind.hpp>
#include <cmath>
Go to the source code of this file.
Namespaces | |
namespace | stan |
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation from C or the boost::math::lgamma implementation. | |
namespace | stan::math |
Matrices and templated mathematical functions. | |
namespace | stan::math::internal |
A comparator that works for any container type that has the brackets operator. | |
Functions | |
template<typename T_x , typename T_k > | |
return_type_t< T_x, T_k > | stan::math::internal::von_mises_cdf_series (const T_x &x, const T_k &k) |
This implementation of the von Mises cdf is a copy of scipy's. | |
template<typename T_x , typename T_k > | |
return_type_t< T_x, T_k > | stan::math::internal::von_mises_cdf_normalapprox (const T_x &x, const T_k &k) |
conv_mises_cdf_normapprox(x, k) is used to approximate the von Mises cdf for k > 50. | |
template<typename T_x , typename T_k > | |
return_type_t< T_x, T_k > | stan::math::internal::von_mises_cdf_centered (const T_x &x, const T_k &k) |
This function calculates the cdf of the von Mises distribution in the case where the distribution has support on (-pi, pi) and has mean 0. | |
template<typename T_x , typename T_mu , typename T_k > | |
return_type_t< T_x, T_mu, T_k > | stan::math::von_mises_cdf (const T_x &x, const T_mu &mu, const T_k &k) |
Calculates the cumulative distribution function of the von Mises distribution: | |