Go to the source code of this file.
|
| namespace | tlapack |
| | Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ).
|
| |
|
| 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()
|
| |
- Author
- Weslley S Pereira, University of Colorado Denver, USA