Stan Math Library
4.9.0
Automatic Differentiation
|
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 | |
auto | stan::math::internal::sum_vector_sizes () |
template<typename Vec , typename... VecArgs> | |
auto | stan::math::internal::sum_vector_sizes (const Vec &x, const VecArgs &... args) |
Get the internal sizes of a pack of vectors. | |
template<typename VecInOut > | |
void | stan::math::internal::append_vectors (VecInOut &x) |
End of recursion for appending to vector. | |
template<typename VecInOut , typename VecIn , typename... VecArgs> | |
void | stan::math::internal::append_vectors (VecInOut &x, const VecIn &y, const VecArgs &... args) |
Fill a vector with other vectors. | |
template<typename Vec , typename... Args> | |
auto | stan::math::vec_concat (const Vec &v1, const Args &... args) |
Get the event stack from a vector of events and other arguments. | |