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 A_t, TLAPACK_SVECTOR tau_t> |
| int | tlapack::gerqf (A_t &A, tau_t &tau, const GerqfOpts &opts={}) |
| | Computes an RQ factorization of an m-by-n matrix A using a blocked algorithm.
|
| |
| template<TLAPACK_SMATRIX A_t, TLAPACK_SVECTOR tau_t, TLAPACK_WORKSPACE work_t> |
| int | tlapack::gerqf_work (A_t &A, tau_t &tau, work_t &work, const GerqfOpts &opts={}) |
| | Computes an RQ factorization of an m-by-n matrix A using a blocked algorithm. Workspace is provided as an argument.
|
| |
| template<class T , TLAPACK_SMATRIX A_t, TLAPACK_SVECTOR tau_t> |
| constexpr WorkInfo | tlapack::gerqf_worksize (const A_t &A, const tau_t &tau, const GerqfOpts &opts={}) |
| | Worspace query of gerqf()
|
| |