10#ifndef TLAPACK_getri_uili_HH
11#define TLAPACK_getri_uili_HH
38template <TLAPACK_MATRIX matrix_t>
constexpr internal::LowerTriangle LOWER_TRIANGLE
Lower Triangle access.
Definition types.hpp:188
constexpr internal::UpperTriangle UPPER_TRIANGLE
Upper Triangle access.
Definition types.hpp:186
constexpr internal::UnitDiagonal UNIT_DIAG
The main diagonal is assumed to consist of 1's.
Definition types.hpp:222
constexpr internal::NonUnitDiagonal NON_UNIT_DIAG
The main diagonal is not assumed to consist of 1's.
Definition types.hpp:220
int ul_mult(matrix_t &A)
ul_mult computes the matrix product of an upper triangular matrix U and a lower triangular unital mat...
Definition ul_mult.hpp:34
int getri_uili(matrix_t &A)
getri_uili calculates the inverse of a general n-by-n matrix A
Definition getri_uili.hpp:39
int trtri_recursive(uplo_t uplo, Diag diag, matrix_t &C, const EcOpts &opts={})
TRTRI computes the inverse of a triangular matrix in-place Input is a triangular matrix,...
Definition trtri_recursive.hpp:48
#define tlapack_check(cond)
Throw an error if cond is false.
Definition exceptionHandling.hpp:98
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition scalar_type_traits.hpp:113