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_rq (matrix_t &A, vector_t &tau, const HouseholderRQOpts &opts={}) | 
|   | Computes a RQ factorization of an m-by-n matrix A.  
  | 
|   | 
| template<TLAPACK_MATRIX matrix_t, TLAPACK_VECTOR vector_t, TLAPACK_WORKSPACE workspace_t>  | 
| int  | tlapack::householder_rq_work (matrix_t &A, vector_t &tau, workspace_t &work, const HouseholderRQOpts &opts={}) | 
|   | Computes a RQ 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_rq_worksize (const matrix_t &A, const vector_t &tau, const HouseholderRQOpts &opts={}) | 
|   | Worspace query of householder_rq()  
  | 
|   | 
- Author
 - Weslley S Pereira, University of Colorado Denver, USA