Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/constraint/identity_constrain.hpp>
#include <stan/math/prim/constraint/lb_constrain.hpp>
#include <stan/math/prim/constraint/ub_constrain.hpp>
#include <stan/math/prim/fun/Eigen.hpp>
#include <stan/math/prim/meta.hpp>
#include <stan/math/prim/err.hpp>
#include <stan/math/prim/fun/add.hpp>
#include <stan/math/prim/fun/exp.hpp>
#include <stan/math/prim/fun/elt_multiply.hpp>
#include <stan/math/prim/fun/inv_logit.hpp>
#include <stan/math/prim/fun/log.hpp>
#include <stan/math/prim/fun/log1p.hpp>
#include <stan/math/prim/fun/log1p_exp.hpp>
#include <stan/math/prim/fun/multiply.hpp>
#include <stan/math/prim/fun/subtract.hpp>
#include <stan/math/prim/fun/sum.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 , typename L , typename U , require_all_stan_scalar_t< T, L, U > * = nullptr, require_not_var_t< return_type_t< T, L, U > > * = nullptr> | |
auto | stan::math::lub_constrain (T &&x, L &&lb, U &&ub) |
Return the lower and upper-bounded scalar derived by transforming the specified free scalar given the specified lower and upper bounds. | |
template<typename T , typename L , typename U , require_all_stan_scalar_t< T, L, U > * = nullptr, require_not_var_t< return_type_t< T, L, U > > * = nullptr> | |
auto | stan::math::lub_constrain (T &&x, L &&lb, U &&ub, return_type_t< T, L, U > &lp) |
Return the lower- and upper-bounded scalar derived by transforming the specified free scalar given the specified lower and upper bounds and increment the specified log density with the log absolute Jacobian determinant. | |
template<typename T , typename L , typename U , require_eigen_t< T > * = nullptr, require_all_stan_scalar_t< L, U > * = nullptr, require_not_var_t< return_type_t< T, L, U > > * = nullptr> | |
auto | stan::math::lub_constrain (const T &x, const L &lb, const U &ub) |
Overload for Eigen matrix and scalar bounds. | |
template<typename T , typename L , typename U , require_eigen_t< T > * = nullptr, require_all_stan_scalar_t< L, U > * = nullptr, require_not_var_t< return_type_t< T, L, U > > * = nullptr> | |
auto | stan::math::lub_constrain (const T &x, const L &lb, const U &ub, return_type_t< T, L, U > &lp) |
Overload for Eigen matrix and scalar bounds plus lp. | |
template<typename T , typename L , typename U , require_all_eigen_t< T, L, U > * = nullptr, require_not_var_t< return_type_t< T, L, U > > * = nullptr> | |
auto | stan::math::lub_constrain (const T &x, const L &lb, const U &ub) |
Overload for Eigen matrix and matrix bounds. | |
template<typename T , typename L , typename U , require_all_kernel_expressions_and_none_scalar_t< T > * = nullptr, require_all_kernel_expressions_t< L, U > * = nullptr> | |
auto | stan::math::lub_constrain (const T &x, const L &lb, const U &ub, return_type_t< T, L, U > &lp) |
Return the lower and upper-bounded matrix derived by transforming the specified free matrix given the specified lower and upper bounds. | |
template<typename T , typename L , typename U , require_all_not_std_vector_t< L, U > * = nullptr> | |
auto | stan::math::lub_constrain (const std::vector< T > &x, const L &lb, const U &ub) |
Overload for array of x and non-array lb and ub. | |
template<typename T , typename L , typename U , require_all_not_std_vector_t< L, U > * = nullptr> | |
auto | stan::math::lub_constrain (const std::vector< T > &x, const L &lb, const U &ub, return_type_t< T, L, U > &lp) |
Overload for array of x and non-array lb and ub with lp. | |
template<typename T , typename L , typename U , require_not_std_vector_t< L > * = nullptr> | |
auto | stan::math::lub_constrain (const std::vector< T > &x, const L &lb, const std::vector< U > &ub) |
Overload for array of x and ub and non-array lb. | |
template<typename T , typename L , typename U , require_not_std_vector_t< L > * = nullptr> | |
auto | stan::math::lub_constrain (const std::vector< T > &x, const L &lb, const std::vector< U > &ub, return_type_t< T, L, U > &lp) |
Overload for array of x and ub and non-array lb with lp. | |
template<typename T , typename L , typename U , require_not_std_vector_t< U > * = nullptr> | |
auto | stan::math::lub_constrain (const std::vector< T > &x, const std::vector< L > &lb, const U &ub) |
Overload for array of x and lb and non-array ub. | |
template<typename T , typename L , typename U , require_not_std_vector_t< U > * = nullptr> | |
auto | stan::math::lub_constrain (const std::vector< T > &x, const std::vector< L > &lb, const U &ub, return_type_t< T, L, U > &lp) |
Overload for array of x and lb and non-array ub with lp. | |
template<typename T , typename L , typename U > | |
auto | stan::math::lub_constrain (const std::vector< T > &x, const std::vector< L > &lb, const std::vector< U > &ub) |
Overload for array of x, lb, and ub with lp. | |
template<typename T , typename L , typename U > | |
auto | stan::math::lub_constrain (const std::vector< T > &x, const std::vector< L > &lb, const std::vector< U > &ub, return_type_t< T, L, U > &lp) |
Overload for array of x, lb, and ub. | |
template<bool Jacobian, typename T , typename L , typename U > | |
auto | stan::math::lub_constrain (const T &x, const L &lb, const U &ub, return_type_t< T, L, U > &lp) |
Return the lower and upper-bounded scalar derived by transforming the specified free scalar given the specified lower and upper bounds. | |
template<typename T , typename L , typename U > | |
auto | stan::math::lub_constrain (const T &x, const std::tuple< L, U > &bounds) |
Wrapper for tuple of bounds, simply delegates to the appropriate overload. | |
template<typename T , typename L , typename U > | |
auto | stan::math::lub_constrain (const T &x, const std::tuple< L, U > &bounds, return_type_t< T, L, U > &lp) |
Wrapper for tuple of bounds, simply delegates to the appropriate overload. | |
template<bool Jacobian, typename T , typename L , typename U > | |
auto | stan::math::lub_constrain (const T &x, const std::tuple< L, U > &bounds, return_type_t< T, L, U > &lp) |
Wrapper for tuple of bounds, simply delegates to the appropriate overload. | |