Cholesky Decomposition (sksparse.cholmod)¶
Added in version 0.1.0.
Changed in version 0.5.0: Major API updates to more closely resemble the scipy.linalg.cholesky()
dense interface, and incorporate more functions from the CHOLMOD MATLAB
interface.
An interface to the SuiteSparse CHOLMOD package, which computes basic linear algebra operations for sparse, symmetric, positive-definite matrices.
Function Interface¶
Object Interface¶
Compute the Cholesky factorization of a sparse matrix. |
|
Compute the LDL factorization of a sparse matrix. |
|
The main object used for creating and manipulating a Cholesky factor. |
Symbolic Analysis¶
Graph Partitioning¶
Compute a node separator for a sparse matrix graph. |
|
Nested dissection ordering of a sparse matrix using METIS. |
|
Nested dissection ordering of a sparse matrix. |
|
The separator tree of a sparse matrix graph. |
Exceptions and Warnings¶
Base class for CHOLMOD-related warnings. |
|
Warning for small diagonal entries. |
|
Base class for CHOLMOD-related errors. |
|
Raised when the input matrix is not positive definite. |
|
Raised when the CHOLMOD library is not installed. |
|
Raised when CHOLMOD runs out of memory. |
|
Raised when CHOLMOD encounters an integer overflow. |
|
Raised when CHOLMOD receives invalid input. |
|
Raised when CHOLMOD encounters a problem with CUDA. |
References