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_MATRIX matrix_t, TLAPACK_VECTOR vector_t> | 
| int | tlapack::householder_ql (matrix_t &A, vector_t &tau, const HouseholderQLOpts &opts={}) | 
|  | Computes a QL factorization of an m-by-n matrix A. 
 | 
|  | 
| template<TLAPACK_MATRIX matrix_t, TLAPACK_VECTOR vector_t, TLAPACK_WORKSPACE work_t> | 
| int | tlapack::householder_ql_work (matrix_t &A, vector_t &tau, work_t &work, const HouseholderQLOpts &opts={}) | 
|  | Computes a QL factorization of an m-by-n matrix A.   Workspace is provided as an argument. 
 | 
|  | 
| template<class T , TLAPACK_MATRIX matrix_t, TLAPACK_VECTOR vector_t> | 
| constexpr WorkInfo | tlapack::householder_ql_worksize (const matrix_t &A, const vector_t &tau, const HouseholderQLOpts &opts={}) | 
|  | Worspace query of householder_ql() 
 | 
|  | 
- Author
- Weslley S Pereira, University of Colorado Denver, USA