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