![]() |
Stan Math Library
5.1.0
Automatic Differentiation
|
#include <stan/math/prim/fun/Eigen.hpp>#include <stan/math/rev/meta.hpp>#include <stan/math/rev/core.hpp>#include <stan/math/rev/core/typedefs.hpp>#include <stan/math/prim/err.hpp>#include <stan/math/prim/fun/to_ref.hpp>#include <stan/math/prim/fun/typedefs.hpp>#include <stan/math/prim/fun/mdivide_left_spd.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. | |
| namespace | stan::math::internal |
| A comparator that works for any container type that has the brackets operator. | |
Functions | |
| template<typename EigMat1 , typename EigMat2 , require_all_eigen_matrix_base_vt< is_var, EigMat1, EigMat2 > * = nullptr> | |
| Eigen::Matrix< var, EigMat1::RowsAtCompileTime, EigMat2::ColsAtCompileTime > | stan::math::mdivide_left_spd (const EigMat1 &A, const EigMat2 &b) |
| template<typename EigMat1 , typename EigMat2 , require_eigen_matrix_base_vt< is_var, EigMat1 > * = nullptr, require_eigen_matrix_base_vt< std::is_arithmetic, EigMat2 > * = nullptr> | |
| Eigen::Matrix< var, EigMat1::RowsAtCompileTime, EigMat2::ColsAtCompileTime > | stan::math::mdivide_left_spd (const EigMat1 &A, const EigMat2 &b) |
| template<typename T1 , typename T2 , require_all_matrix_t< T1, T2 > * = nullptr, require_any_var_matrix_t< T1, T2 > * = nullptr> | |
| auto | stan::math::mdivide_left_spd (const T1 &A, const T2 &B) |
| Returns the solution of the system Ax=B where A is symmetric positive definite. | |