hetrs_aa#
Functions
-
void chetrs_aa(const char *uplo, const INT n, const INT nrhs, const c64 *restrict A, const INT lda, const INT *restrict ipiv, c64 *restrict B, const INT ldb, c64 *restrict work, const INT lwork, INT *info)#
CHETRS_AA solves a system of linear equations A*X = B with a complex Hermitian matrix A using the factorization A = U**H*T*U or A = L*T*L**H computed by CHETRF_AA.
Parameters
inuplo'U': Upper triangular, form is A = U**H*T*U'L': Lower triangular, form is A = L*T*L**H
innThe order of the matrix A.
n>=0.innrhsThe number of right hand sides, i.e., the number of columns of the matrix B.
nrhs>=0.inldaThe leading dimension of the array A.
lda>=max(1,n).inoutBArray of dimension
(ldb,nrhs). On entry, the right hand side matrix B. On exit, the solution matrix X.inldbThe leading dimension of the array B.
ldb>=max(1,n).outworkArray of dimension
max(1,lwork).inlworkThe dimension of the array
work. Ifmin(n,nrhs)=0,lwork>=1, elselwork>=3*n-2. Iflwork=-1, then a workspace query is assumed; the routine only calculates the minimal size of theworkarray, returns this value as the first entry of theworkarray, and no error message related tolworkis issued.outinfoinfo=0: successful exitinfo<0: ifinfo=-i, the i-th argument had an illegal value
void chetrs_aa(
const char* uplo,
const INT n,
const INT nrhs,
const c64* restrict A,
const INT lda,
const INT* restrict ipiv,
c64* restrict B,
const INT ldb,
c64* restrict work,
const INT lwork,
INT* info
);
Functions
-
void zhetrs_aa(const char *uplo, const INT n, const INT nrhs, const c128 *restrict A, const INT lda, const INT *restrict ipiv, c128 *restrict B, const INT ldb, c128 *restrict work, const INT lwork, INT *info)#
ZHETRS_AA solves a system of linear equations A*X = B with a complex Hermitian matrix A using the factorization A = U**H*T*U or A = L*T*L**H computed by ZHETRF_AA.
Parameters
inuplo'U': Upper triangular, form is A = U**H*T*U'L': Lower triangular, form is A = L*T*L**H
innThe order of the matrix A.
n>=0.innrhsThe number of right hand sides, i.e., the number of columns of the matrix B.
nrhs>=0.inldaThe leading dimension of the array A.
lda>=max(1,n).inoutBArray of dimension
(ldb,nrhs). On entry, the right hand side matrix B. On exit, the solution matrix X.inldbThe leading dimension of the array B.
ldb>=max(1,n).outworkArray of dimension
max(1,lwork).inlworkThe dimension of the array
work. Ifmin(n,nrhs)=0,lwork>=1, elselwork>=3*n-2. Iflwork=-1, then a workspace query is assumed; the routine only calculates the minimal size of theworkarray, returns this value as the first entry of theworkarray, and no error message related tolworkis issued.outinfoinfo=0: successful exitinfo<0: ifinfo=-i, the i-th argument had an illegal value
void zhetrs_aa(
const char* uplo,
const INT n,
const INT nrhs,
const c128* restrict A,
const INT lda,
const INT* restrict ipiv,
c128* restrict B,
const INT ldb,
c128* restrict work,
const INT lwork,
INT* info
);