bundles / scipy latest / scipy / sparse / linalg / _dsolve / _superlu / gstrf
built-in
scipy.sparse.linalg._dsolve._superlu:gstrf
Summary
performs a factorization of the sparse matrix A=*(N,nnz,nzvals,rowind,colptr) and returns a factored_lu object.
Parameters
Matrix to be factorized is represented as N,nnz,nzvals,rowind,colptras separate arguments. This is compressed sparse column representation.
N: intnumber of rows and columns
nnz: intnumber of non-zero elements
nzvals: arraynon-zero values
rowind: arrayrow-index for this column (same size as nzvals)
colptr: arrayindex into rowind for first non-zero value in this column size is (N+1). Last value should be nnz.
Other Parameters
optionsspecifies additional options for SuperLU (same keys and values as in superlu_options_t C structure, and additionally 'Relax' and 'PanelSize')
ilu: boolwhether to perform an incomplete LU decomposition (default: false)
Aliases
-
scipy.sparse.linalg._dsolve._superlu.gstrf