linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Solves a system of M LQ-factored equations of N unknowns. N must be greater than or equal to M. More...
Public Member Functions | |
solve_lq_mtx | |
solve_lq_mtx_cmplx | |
solve_lq_vec | |
solve_lq_vec_cmplx | |
Solves a system of M LQ-factored equations of N unknowns. N must be greater than or equal to M.
[in] | a | On input, the M-by-N LQ factored matrix as returned by lq_factor. On output, the contents of this matrix are restored. Notice, N must be greater than or equal to M. |
[in] | tau | A MIN(M, N)-element array containing the scalar factors of the elementary reflectors as returned by lq_factor. |
[in] | b | On input, an N-by-NRHS matrix where the first M rows contain the right-hand-side matrix. On output, the N-by-NRHS solution matrix X. |
[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 3928 of file linalg.f90.