This is documentation for an old release of SciPy (version 0.17.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.linalg.lapack.dgetrs¶
- scipy.linalg.lapack.dgetrs(lu, piv, b[, trans, overwrite_b]) = <fortran object>¶
Wrapper for dgetrs.
Parameters: lu : input rank-2 array(‘d’) with bounds (n,n)
piv : input rank-1 array(‘i’) with bounds (n)
b : input rank-2 array(‘d’) with bounds (n,nrhs)
Returns: x : rank-2 array(‘d’) with bounds (n,nrhs) and b storage
info : int
Other Parameters: overwrite_b : input int, optional
Default: 0
trans : input int, optional
Default: 0