linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Provides a direct solution to a square, sparse system. More...
Public Member Functions | |
csr_solve_sparse_direct | |
Provides a direct solution to a square, sparse system.
[in] | a | The N-by-N sparse matrix to factor. |
[in] | b | The N-element right-hand-side array. |
[out] | x | The N-element solution array. |
[in] | droptol | An optional threshold value used to determine when to drop small terms as part of the factorization of matrix A. The default value is set to the square root of machine precision (~1e-8). |
[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 5496 of file linalg.f90.