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.dpbsv¶
- scipy.linalg.lapack.dpbsv = <fortran object>¶
- dpbsv - Function signature:
- c,x,info = dpbsv(ab,b,[lower,ldab,overwrite_ab,overwrite_b])
- Required arguments:
- ab : input rank-2 array(‘d’) with bounds (ldab,n) b : input rank-2 array(‘d’) with bounds (ldb,nrhs)
- Optional arguments:
- lower := 0 input int overwrite_ab := 0 input int ldab := shape(ab,0) input int overwrite_b := 0 input int
- Return objects:
- c : rank-2 array(‘d’) with bounds (ldab,n) and ab storage x : rank-2 array(‘d’) with bounds (ldb,nrhs) and b storage info : int