linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Computes the LQ factorization of an M-by-N matrix. More...
Public Member Functions | |
lq_factor_no_pivot | |
lq_factor_no_pivot_cmplx | |
Computes the LQ factorization of an M-by-N matrix.
[in,out] | a | On input, the M-by-N matrix to factor. On output, the elements on and below the diagonal contain the MIN(M, N)-by-N lower trapezoidal matrix L (L is lower triangular if M >= N). The elements above the diagonal, along with the array tau , represent the orthogonal matrix Q as a product of elementary reflectors. |
[out] | tau | A MIN(M, N)-element array used to store the scalar factors of the elementary reflectors. |
[out] | work | An optional input, that if provided, prevents any local memory allocation. If not provided, the memory required is allocated within. If provided, the length of the array must be at least olwork . |
[out] | olwork | An optional output used to determine workspace size. If supplied, the routine determines the optimal size for work , and returns without performing any actual calculations. |
[in,out] | err | An optional errors-based object that if provided can be used to retrieve information relating to any errors encountered during execution. If not provided, a default implementation of the errors class is used internally to provide error handling. Possible errors and warning messages that may be encountered are as follows.
|
Definition at line 3570 of file linalg.f90.