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.sgbtrf¶
- scipy.linalg.lapack.sgbtrf = <fortran object>¶
- sgbtrf - Function signature:
- lu,ipiv,info = sgbtrf(ab,kl,ku,[m,n,ldab,overwrite_ab])
- Required arguments:
- ab : input rank-2 array(‘f’) with bounds (ldab,*) kl : input int ku : input int
- Optional arguments:
- m := shape(ab,1) input int n := shape(ab,1) input int overwrite_ab := 0 input int ldab := shape(ab,0) input int
- Return objects:
- lu : rank-2 array(‘f’) with bounds (ldab,*) and ab storage ipiv : rank-1 array(‘i’) with bounds (MIN(m,n)) info : int