Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/meta.hpp>
#include <stan/math/prim/fun/log_inv_logit.hpp>
#include <stan/math/prim/fun/exp.hpp>
#include <stan/math/prim/fun/log1m_inv_logit.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. | |
Functions | |
template<typename T > | |
T | stan::math::prob_constrain (const T &x) |
Return a probability value constrained to fall between 0 and 1 (inclusive) for the specified free scalar. | |
template<typename T > | |
T | stan::math::prob_constrain (const T &x, T &lp) |
Return a probability value constrained to fall between 0 and 1 (inclusive) for the specified free scalar and increment the specified log probability reference with the log absolute Jacobian determinant of the transform. | |
template<bool Jacobian, typename T > | |
auto | stan::math::prob_constrain (const T &x, T &lp) |
Return a probability value constrained to fall between 0 and 1 (inclusive) for the specified free scalar. | |