SciPy

This is documentation for an old release of SciPy (version 1.5.3). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.linalg.lapack.dgbtrs

scipy.linalg.lapack.dgbtrs(ab, kl, ku, b, ipiv[, trans, n, ldab, ldb, overwrite_b]) = <fortran object>

Wrapper for dgbtrs.

Parameters
abinput rank-2 array(‘d’) with bounds (ldab,n)
klinput int
kuinput int
binput rank-2 array(‘d’) with bounds (ldb,nrhs)
ipivinput rank-1 array(‘i’) with bounds (n)
Returns
xrank-2 array(‘d’) with bounds (ldb,nrhs) and b storage
infoint
Other Parameters
overwrite_binput int, optional

Default: 0

transinput int, optional

Default: 0

ninput int, optional

Default: shape(ab,1)

ldabinput int, optional

Default: shape(ab,0)

ldbinput int, optional

Default: shape(b,0)

Previous topic

scipy.linalg.lapack.sgbtrs

Next topic

scipy.linalg.lapack.cgbtrs