SciPy

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

scipy.linalg.lapack.zgbtrs

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

Wrapper for zgbtrs.

Parameters:
ab : input rank-2 array(‘D’) with bounds (ldab,n)
kl : input int
ku : input int
b : input rank-2 array(‘D’) with bounds (ldb,nrhs)
ipiv : input rank-1 array(‘i’) with bounds (n)
Returns:
x : rank-2 array(‘D’) with bounds (ldb,nrhs) and b storage
info : int
Other Parameters:
 
overwrite_b : input int, optional

Default: 0

trans : input int, optional

Default: 0

n : input int, optional

Default: shape(ab,1)

ldab : input int, optional

Default: shape(ab,0)

ldb : input int, optional

Default: shape(b,0)

Previous topic

scipy.linalg.lapack.cgbtrs

Next topic

scipy.linalg.lapack.sgebal