linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Solves a system of Cholesky factored equations. More...
Public Member Functions | |
solve_cholesky_mtx | |
solve_cholesky_mtx_cmplx | |
solve_cholesky_vec | |
solve_cholesky_vec_cmplx | |
Solves a system of Cholesky factored equations.
[in] | upper | Set to true if the original matrix \( A \) was factored such that \( A = U^T U \); else, set to false if the factorization of \( A \) was \( A = L L^T \). |
[in] | a | The N-by-N Cholesky factored matrix as returned by cholesky_factor. |
[in,out] | b | On input, the N-by-NRHS right-hand-side matrix B. On output, the solution matrix X. |
[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 2663 of file linalg.f90.