Unsymmetric Multifrontal LU Decomposition (sksparse.umfpack)¶
Added in version 0.5.0.
An interface to the SuiteSparse UMFPACK 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 UMFPACK. |
Object Interface¶
Compute the LU factorization of a sparse matrix using UMFPACK. |
|
The main object used for creating and using an LU factorization. |
|
A data class to store UMFPACK info. |
|
The class used to manage UMFPACK control parameters. |
Warnings and Exceptions¶
A warning occurred in a UMFPACK routine. |
|
A singular matrix was encountered in a UMFPACK routine. |
|
A determinant underflow was encountered in a UMFPACK routine. |
|
A determinant overflow was encountered in a UMFPACK routine. |
|
An error occurred in a UMFPACK routine. |
|
UMFPACK ran out of memory. |
|
An invalid Numeric object was passed to a UMFPACK routine. |
|
An invalid Symbolic object was passed to a UMFPACK routine. |
|
A required argument was missing in a UMFPACK routine. |
|
A non-positive value for n was passed to a UMFPACK routine. |
|
An invalid matrix was passed to a UMFPACK routine. |
|
A matrix with a different nonzero pattern was passed to a UMFPACK routine. |
|
An invalid system type was passed to a UMFPACK routine. |
|
An invalid permutation was passed to a UMFPACK routine. |
|
An internal error occurred in a UMFPACK routine. |
|
A file I/O error occurred in a UMFPACK routine. |
|
The ordering algorithm failed in a UMFPACK routine. |
|
An invalid blob was passed to a UMFPACK routine. |
References