This is documentation for an old release of SciPy (version 0.17.0). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.linalg.lapack.dgbtrs¶
- scipy.linalg.lapack.dgbtrs = <fortran object>¶
- dgbtrs - Function signature:
- x,info = dgbtrs(ab,kl,ku,b,ipiv,[trans,n,ldab,ldb,overwrite_b])
- Required arguments:
- ab : input rank-2 array(‘d’) with bounds (ldab,*) kl : input int ku : input int b : input rank-2 array(‘d’) with bounds (ldb,*) ipiv : input rank-1 array(‘i’) with bounds (n)
- Optional arguments:
- overwrite_b := 0 input int trans := 0 input int n := shape(ab,1) input int ldab := shape(ab,0) input int ldb := shape(b,0) input int
- Return objects:
- x : rank-2 array(‘d’) with bounds (ldb,*) and b storage info : int