Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/fun/Eigen.hpp>
#include <stan/math/prim/meta.hpp>
#include <stan/math/prim/err.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 M , require_eigen_dense_dynamic_t< M > * = nullptr> | |
Eigen::Matrix< complex_return_t< scalar_type_t< M > >, -1, -1 > | stan::math::complex_schur_decompose_u (const M &m) |
Return the unitary matrix of the complex Schur decomposition of the specified square matrix. | |
template<typename M , require_eigen_dense_dynamic_t< M > * = nullptr> | |
Eigen::Matrix< complex_return_t< scalar_type_t< M > >, -1, -1 > | stan::math::complex_schur_decompose_t (const M &m) |
Return the Schur form matrix of the complex Schur decomposition of the specified square matrix. | |
template<typename M , require_eigen_dense_dynamic_t< M > * = nullptr> | |
std::tuple< Eigen::Matrix< complex_return_t< scalar_type_t< M > >, -1, -1 >, Eigen::Matrix< complex_return_t< scalar_type_t< M > >, -1, -1 > > | stan::math::complex_schur_decompose (const M &m) |
Return the complex Schur decomposition of the specified square matrix. | |