Clark Kent LU Decomposition (sksparse.klu)¶
Added in version 0.5.0.
An interface to the SuiteSparse KLU package, which computes the LU factorization and solves systems of equations for sparse, possibly non-symmetric, indefinite matrices.
Function Interface¶
Solve a linear system using KLU. |
Object Interface¶
Compute the LU factorization of a sparse matrix using KLU. |
|
Class to compute and store the KLU factorization of a sparse matrix. |
|
A dataclass to store KLU information. |
|
A dataclass to set KLU control parameters. |
Warnings and Exceptions¶
Base warning for KLU-related warnings. |
|
Warning raised when a singular matrix is encountered. |
|
Base exception for KLU-related errors. |
|
Exception raised when KLU runs out of memory. |
|
Exception raised for invalid inputs to KLU. |
|
Exception raised when KLU encounters an overflow. |
References