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.dgbsv¶
- scipy.linalg.lapack.dgbsv = <fortran object>¶
- dgbsv - Function signature:
- lub,piv,x,info = dgbsv(kl,ku,ab,b,[overwrite_ab,overwrite_b])
- Required arguments:
- kl : input int ku : input int ab : input rank-2 array(‘d’) with bounds (2*kl+ku+1,n) b : input rank-2 array(‘d’) with bounds (n,nrhs)
- Optional arguments:
- overwrite_ab := 0 input int overwrite_b := 0 input int
- Return objects:
- lub : rank-2 array(‘d’) with bounds (2*kl+ku+1,n) and ab storage piv : rank-1 array(‘i’) with bounds (n) x : rank-2 array(‘d’) with bounds (n,nrhs) and b storage info : int