Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/fun/Eigen.hpp>
#include <stan/math/rev/meta.hpp>
#include <stan/math/rev/core/var.hpp>
#include <stan/math/rev/core/Eigen_NumTraits.hpp>
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. | |
Typedefs | |
using | stan::math::matrix_v = Eigen::Matrix< var, Eigen::Dynamic, Eigen::Dynamic > |
The type of a matrix holding var values. | |
using | stan::math::vector_v = Eigen::Matrix< var, Eigen::Dynamic, 1 > |
The type of a (column) vector holding var values. | |
using | stan::math::row_vector_v = Eigen::Matrix< var, 1, Eigen::Dynamic > |
The type of a row vector holding var values. | |
using | stan::math::matrix_vi = Eigen::Matrix< vari *, Eigen::Dynamic, Eigen::Dynamic > |
The type of a matrix holding vari* values. | |
using | stan::math::vector_vi = Eigen::Matrix< vari *, Eigen::Dynamic, 1 > |
The type of a (column) vector holding vari* values. | |
using | stan::math::row_vector_vi = Eigen::Matrix< vari *, 1, Eigen::Dynamic > |
The type of a row vector holding vari* values. | |