SciPy 0.6.0 API Documentation Generated by Endo, 2007-10-17
useUmfpack = True
Return a fuction for solving a sparse linear system, with A pre-factorized.
A linear solver, for a sparse, square matrix A, using LU decomposition where L is a lower triangular matrix and U is an upper triagular matrix.
Returns a factored_lu object. (scipy.linsolve._superlu.SciPyLUType)
See scipy.linsolve._superlu.dgstrf for more info.
The default sparse solver is umfpack when available. This can be changed by passing useUmfpack = False, which then causes the always present SuperLU based solver to be used.
Umfpack requires a CSR/CSC matrix to have sorted column/row indices. If sure that the matrix fulfills this, pass assumeSortedIndices = True to gain some speed.
| Local name | Refers to |
|---|---|
| asarray | numpy.asarray |
| isspmatrix | scipy.sparse.isspmatrix |
| isspmatrix_csc | scipy.sparse.isspmatrix_csc |
| isspmatrix_csr | scipy.sparse.isspmatrix_csr |
| spdiags | scipy.sparse.spdiags |
| umfpack | SciPy.linsolve.umfpack |
| _superlu | SciPy.linsolve._superlu |