gbtrs#
Functions
-
void sgbtrs(const char *trans, const INT n, const INT kl, const INT ku, const INT nrhs, const f32 *restrict AB, const INT ldab, const INT *restrict ipiv, f32 *restrict B, const INT ldb, INT *info)#
SGBTRS solves a system of linear equations.
with a general band matrix A using the LU factorization computed by SGBTRF.A * X = B or A**T * X = B
Parameters
intransSpecifies the form of the system of equations:
'N': A * X = B (No transpose)'T': A**T * X = B (Transpose)'C': A**T * X = B (Conjugate transpose = Transpose)
innThe order of the matrix A.
n>=0.inklThe number of subdiagonals within the band of A.
kl>=0.inkuThe number of superdiagonals within the band of A.
ku>=0.innrhsThe number of right hand sides, i.e., the number of columns of the matrix
B.nrhs>=0.inABArray of dimension (
ldab,n). Details of the LU factorization of the band matrix A, as computed by SGBTRF. U is stored as an upper triangular band matrix withkl+kusuperdiagonals in rows 0 tokl+ku, and the multipliers used during the factorization are stored in rowskl+ku+1to2*kl+ku.inldabThe leading dimension of the array
AB.ldab>=2*kl+ku+1.inipivArray of dimension (
n). The pivot indices; for0<=i<n, row i of the matrix was interchanged with rowipiv[i].inoutBArray of dimension (
ldb,nrhs). On entry, the right hand side matrixB. On exit, the solution matrix X.inldbThe leading dimension of the array
B.ldb>=max(1,n).outinfoinfo=0: successful exitinfo<0: ifinfo=-i, the i-th argument had an illegal value
void sgbtrs(
const char* trans,
const INT n,
const INT kl,
const INT ku,
const INT nrhs,
const f32* restrict AB,
const INT ldab,
const INT* restrict ipiv,
f32* restrict B,
const INT ldb,
INT* info
);
Functions
-
void dgbtrs(const char *trans, const INT n, const INT kl, const INT ku, const INT nrhs, const f64 *restrict AB, const INT ldab, const INT *restrict ipiv, f64 *restrict B, const INT ldb, INT *info)#
DGBTRS solves a system of linear equations.
with a general band matrix A using the LU factorization computed by DGBTRF.A * X = B or A**T * X = B
Parameters
intransSpecifies the form of the system of equations:
'N': A * X = B (No transpose)'T': A**T * X = B (Transpose)'C': A**T * X = B (Conjugate transpose = Transpose)
innThe order of the matrix A.
n>=0.inklThe number of subdiagonals within the band of A.
kl>=0.inkuThe number of superdiagonals within the band of A.
ku>=0.innrhsThe number of right hand sides, i.e., the number of columns of the matrix
B.nrhs>=0.inABArray of dimension (
ldab,n). Details of the LU factorization of the band matrix A, as computed by DGBTRF. U is stored as an upper triangular band matrix withkl+kusuperdiagonals in rows 0 tokl+ku, and the multipliers used during the factorization are stored in rowskl+ku+1to2*kl+ku.inldabThe leading dimension of the array
AB.ldab>=2*kl+ku+1.inipivArray of dimension (
n). The pivot indices; for0<=i<n, row i of the matrix was interchanged with rowipiv[i].inoutBArray of dimension (
ldb,nrhs). On entry, the right hand side matrixB. On exit, the solution matrix X.inldbThe leading dimension of the array
B.ldb>=max(1,n).outinfoinfo=0: successful exitinfo<0: ifinfo=-i, the i-th argument had an illegal value
void dgbtrs(
const char* trans,
const INT n,
const INT kl,
const INT ku,
const INT nrhs,
const f64* restrict AB,
const INT ldab,
const INT* restrict ipiv,
f64* restrict B,
const INT ldb,
INT* info
);
Functions
-
void cgbtrs(const char *trans, const INT n, const INT kl, const INT ku, const INT nrhs, const c64 *restrict AB, const INT ldab, const INT *restrict ipiv, c64 *restrict B, const INT ldb, INT *info)#
CGBTRS solves a system of linear equations.
with a general band matrix A using the LU factorization computed by CGBTRF.A * X = B, A**T * X = B, or A**H * X = B
Parameters
intransSpecifies the form of the system of equations:
'N': A * X = B (No transpose)'T': A**T * X = B (Transpose)'C': A**H * X = B (Conjugate transpose)
innThe order of the matrix A.
n>=0.inklThe number of subdiagonals within the band of A.
kl>=0.inkuThe number of superdiagonals within the band of A.
ku>=0.innrhsThe number of right hand sides, i.e., the number of columns of the matrix
B.nrhs>=0.inABArray of dimension (
ldab,n). Details of the LU factorization of the band matrix A, as computed by CGBTRF. U is stored as an upper triangular band matrix withkl+kusuperdiagonals in rows 0 tokl+ku, and the multipliers used during the factorization are stored in rowskl+ku+1to2*kl+ku.inldabThe leading dimension of the array
AB.ldab>=2*kl+ku+1.inipivArray of dimension (
n). The pivot indices; for0<=i<n, row i of the matrix was interchanged with rowipiv[i].inoutBArray of dimension (
ldb,nrhs). On entry, the right hand side matrixB. On exit, the solution matrix X.inldbThe leading dimension of the array
B.ldb>=max(1,n).outinfoinfo=0: successful exitinfo<0: ifinfo=-i, the i-th argument had an illegal value
void cgbtrs(
const char* trans,
const INT n,
const INT kl,
const INT ku,
const INT nrhs,
const c64* restrict AB,
const INT ldab,
const INT* restrict ipiv,
c64* restrict B,
const INT ldb,
INT* info
);
Functions
-
void zgbtrs(const char *trans, const INT n, const INT kl, const INT ku, const INT nrhs, const c128 *restrict AB, const INT ldab, const INT *restrict ipiv, c128 *restrict B, const INT ldb, INT *info)#
ZGBTRS solves a system of linear equations.
with a general band matrix A using the LU factorization computed by ZGBTRF.A * X = B, A**T * X = B, or A**H * X = B
Parameters
intransSpecifies the form of the system of equations:
'N': A * X = B (No transpose)'T': A**T * X = B (Transpose)'C': A**H * X = B (Conjugate transpose)
innThe order of the matrix A.
n>=0.inklThe number of subdiagonals within the band of A.
kl>=0.inkuThe number of superdiagonals within the band of A.
ku>=0.innrhsThe number of right hand sides, i.e., the number of columns of the matrix
B.nrhs>=0.inABArray of dimension (
ldab,n). Details of the LU factorization of the band matrix A, as computed by ZGBTRF. U is stored as an upper triangular band matrix withkl+kusuperdiagonals in rows 0 tokl+ku, and the multipliers used during the factorization are stored in rowskl+ku+1to2*kl+ku.inldabThe leading dimension of the array
AB.ldab>=2*kl+ku+1.inipivArray of dimension (
n). The pivot indices; for0<=i<n, row i of the matrix was interchanged with rowipiv[i].inoutBArray of dimension (
ldb,nrhs). On entry, the right hand side matrixB. On exit, the solution matrix X.inldbThe leading dimension of the array
B.ldb>=max(1,n).outinfoinfo=0: successful exitinfo<0: ifinfo=-i, the i-th argument had an illegal value
void zgbtrs(
const char* trans,
const INT n,
const INT kl,
const INT ku,
const INT nrhs,
const c128* restrict AB,
const INT ldab,
const INT* restrict ipiv,
c128* restrict B,
const INT ldb,
INT* info
);