<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
Loading...
Searching...
No Matches
getri.hpp File Reference
Include dependency graph for getri.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  tlapack::GetriOpts
 Options struct for getri() More...
 

Namespaces

namespace  tlapack
 Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ).
 

Enumerations

enum class  tlapack::GetriVariant : char { tlapack::UILI = 'D' , tlapack::UXLI = 'C' }
 Variants of the algorithm to compute the inverse of a matrix. More...
 

Functions

template<TLAPACK_SMATRIX matrix_t, TLAPACK_VECTOR piv_t>
int tlapack::getri (matrix_t &A, const piv_t &piv, const GetriOpts &opts={})
 getri computes inverse of a general n-by-n matrix A
 
template<TLAPACK_SMATRIX matrix_t, TLAPACK_VECTOR piv_t, TLAPACK_WORKSPACE work_t>
int tlapack::getri_work (matrix_t &A, const piv_t &piv, work_t &work, const GetriOpts &opts={})
 getri computes inverse of a general n-by-n matrix A Workspace is provided as an argument.
 
template<class T , TLAPACK_SMATRIX matrix_t, TLAPACK_VECTOR piv_t>
constexpr WorkInfo tlapack::getri_worksize (const matrix_t &A, const piv_t &piv, const GetriOpts &opts={})
 Worspace query of getri()
 

Detailed Description

Author
Weslley S Pereira, University of Colorado Denver, USA