Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/meta.hpp>
#include <stan/math/prim/err.hpp>
#include <stan/math/prim/fun/constants.hpp>
#include <stan/math/prim/constraint/identity_free.hpp>
#include <stan/math/prim/fun/log.hpp>
#include <stan/math/prim/fun/subtract.hpp>
#include <stan/math/prim/fun/value_of.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 , require_not_std_vector_t< T > * = nullptr, require_stan_scalar_t< L > * = nullptr> | |
auto | stan::math::lb_free (T &&y, L &&lb) |
Return the unconstrained value that produces the specified lower-bound constrained value. | |
template<typename T , typename L , require_all_eigen_t< T, L > * = nullptr> | |
auto | stan::math::lb_free (T &&y, L &&lb) |
Return the free matrix that corresponds to the specified lower-bounded matrix with respect to the specified lower bound. | |
template<typename T , typename L , require_not_std_vector_t< L > * = nullptr> | |
auto | stan::math::lb_free (const std::vector< T > y, const L &lb) |
Return the free variable that corresponds to the specified lower-bounded variable with respect to the specified lower bound. | |
template<typename T , typename L > | |
auto | stan::math::lb_free (const std::vector< T > y, const std::vector< L > &lb) |
Return the free variable that corresponds to the specified lower-bounded variable with respect to the specified lower bound. | |