|
<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
|
#include "tlapack/base/utils.hpp"#include "tlapack/blas/copy.hpp"#include "tlapack/blas/dotu.hpp"#include "tlapack/blas/gemv.hpp"

Go to the source code of this file.
Namespaces | |
| namespace | tlapack |
| Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ). | |
Functions | |
| template<TLAPACK_SMATRIX matrix_t> | |
| int | tlapack::getri_uxli (matrix_t &A) |
| getri computes inverse of a general n-by-n matrix A by solving for X in the following equation | |
| template<TLAPACK_SMATRIX matrix_t, TLAPACK_WORKSPACE work_t> | |
| int | tlapack::getri_uxli_work (matrix_t &A, work_t &work) |
| getri computes inverse of a general n-by-n matrix A by solving for X in the following equation Workspace is provided as an argument. | |
| template<class T , TLAPACK_SMATRIX matrix_t> | |
| constexpr WorkInfo | tlapack::getri_uxli_worksize (const matrix_t &A) |
| Worspace query of getri() | |