linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Solves a system of LU-factored equations. More...
Public Member Functions | |
solve_lu_mtx | |
solve_lu_mtx_cmplx | |
solve_lu_vec | |
solve_lu_vec_cmplx | |
csr_lu_solve | |
Solves a system of LU-factored equations.
[in] | a | The N-by-N LU factored matrix as output by lu_factor. |
[in] | ipvt | The N-element pivot array as output by lu_factor. |
[in,out] | b | On input, the N-by-NRHS right-hand-side matrix. On output, the N-by-NRHS solution matrix. |
[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.
|
[in] | lu | The N-by-N LU-factored matrix from lu_factor. |
[in] | ju | The N-element U row tracking array from lu_factor. |
[in] | b | The N-element right-hand-side array. |
[out] | x | The N-element solution array. |
[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 2421 of file linalg.f90.