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/Eigen.hpp>
#include <vector>
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 > | |
const T & | stan::math::get_base1 (const std::vector< T > &x, size_t i, const char *error_msg, size_t idx) |
Return a reference to the value of the specified vector at the specified base-one index. | |
template<typename T > | |
const T & | stan::math::get_base1 (const std::vector< std::vector< T > > &x, size_t i1, size_t i2, const char *error_msg, size_t idx) |
Return a reference to the value of the specified vector at the specified base-one indexes. | |
template<typename T > | |
const T & | stan::math::get_base1 (const std::vector< std::vector< std::vector< T > > > &x, size_t i1, size_t i2, size_t i3, const char *error_msg, size_t idx) |
Return a reference to the value of the specified vector at the specified base-one indexes. | |
template<typename T > | |
const T & | stan::math::get_base1 (const std::vector< std::vector< std::vector< std::vector< T > > > > &x, size_t i1, size_t i2, size_t i3, size_t i4, const char *error_msg, size_t idx) |
Return a reference to the value of the specified vector at the specified base-one indexes. | |
template<typename T > | |
const T & | stan::math::get_base1 (const std::vector< std::vector< std::vector< std::vector< std::vector< T > > > > > &x, size_t i1, size_t i2, size_t i3, size_t i4, size_t i5, const char *error_msg, size_t idx) |
Return a reference to the value of the specified vector at the specified base-one indexes. | |
template<typename T > | |
const T & | stan::math::get_base1 (const std::vector< std::vector< std::vector< std::vector< std::vector< std::vector< T > > > > > > &x, size_t i1, size_t i2, size_t i3, size_t i4, size_t i5, size_t i6, const char *error_msg, size_t idx) |
Return a reference to the value of the specified vector at the specified base-one indexes. | |
template<typename T > | |
const T & | stan::math::get_base1 (const std::vector< std::vector< std::vector< std::vector< std::vector< std::vector< std::vector< T > > > > > > > &x, size_t i1, size_t i2, size_t i3, size_t i4, size_t i5, size_t i6, size_t i7, const char *error_msg, size_t idx) |
Return a reference to the value of the specified vector at the specified base-one indexes. | |
template<typename T > | |
const T & | stan::math::get_base1 (const std::vector< std::vector< std::vector< std::vector< std::vector< std::vector< std::vector< std::vector< T > > > > > > > > &x, size_t i1, size_t i2, size_t i3, size_t i4, size_t i5, size_t i6, size_t i7, size_t i8, const char *error_msg, size_t idx) |
Return a reference to the value of the specified vector at the specified base-one indexes. | |
template<typename EigMat , require_eigen_t< EigMat > * = nullptr, require_not_eigen_vector_t< EigMat > * = nullptr> | |
Eigen::Matrix< value_type_t< EigMat >, 1, Eigen::Dynamic > | stan::math::get_base1 (const EigMat &x, size_t m, const char *error_msg, size_t idx) |
Return a copy of the row of the specified matrix at the specified base-one row index. | |
template<typename EigMat , require_eigen_t< EigMat > * = nullptr> | |
const value_type_t< EigMat > & | stan::math::get_base1 (const EigMat &x, size_t m, size_t n, const char *error_msg, size_t idx) |
Return a reference to the value of the specified matrix at the specified base-one row and column indexes. | |
template<typename EigVec , require_eigen_vector_t< EigVec > * = nullptr> | |
const value_type_t< EigVec > & | stan::math::get_base1 (const EigVec &x, size_t m, const char *error_msg, size_t idx) |
Return a reference to the value of the specified Eigen vector at the specified base-one index. | |