Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/err.hpp>
#include <stan/math/prim/fun/Eigen.hpp>
#include <stan/math/prim/fun/LDLT_factor.hpp>
#include <stan/math/prim/fun/mdivide_left_ldlt.hpp>
#include <stan/math/prim/fun/transpose.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. | |
Functions | |
template<typename EigMat , typename T , require_all_matrix_t< EigMat, T > * = nullptr, require_any_not_st_arithmetic< EigMat, T > * = nullptr> | |
auto | stan::math::mdivide_right_ldlt (const EigMat &b, LDLT_factor< T > &A) |
Returns the solution of the system xA=b given an LDLT_factor of A. | |
template<typename EigMat , typename T , require_all_matrix_t< EigMat, T > * = nullptr, require_all_st_arithmetic< EigMat, T > * = nullptr> | |
Eigen::Matrix< double, EigMat::RowsAtCompileTime, T::ColsAtCompileTime > | stan::math::mdivide_right_ldlt (const EigMat &b, LDLT_factor< T > &A) |
Returns the solution of the system xA=b given an LDLT_factor of A. | |