sytrs_aa#
Functions
-
void ssytrs_aa(const char *uplo, const INT n, const INT nrhs, const f32 *restrict A, const INT lda, const INT *restrict ipiv, f32 *restrict B, const INT ldb, f32 *restrict work, const INT lwork, INT *info)#
SSYTRS_AA solves a system of linear equations A*X = B with a real symmetric matrix A using the factorization A = U**T*T*U or A = L*T*L**T computed by SSYTRF_AA.
Parameters
inuploSpecifies whether the details of the factorization are stored as an upper or lower triangular matrix. = ‘U’: Upper triangular, form is A = U**T*T*U; = ‘L’: Lower triangular, form is A = L*T*L**T.
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.
inADouble precision array, dimension (lda, n). Details of factors computed by SSYTRF_AA.
inldaThe leading dimension of the array A. lda >= max(1, n).
inipivInteger array, dimension (n). Details of the interchanges as computed by SSYTRF_AA.
inoutBDouble precision array, 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).
outworkDouble precision array, dimension (max(1, lwork)).
inlworkThe dimension of the array work. If min(n, nrhs) = 0, lwork >= 1, else lwork >= 3*n-2. If lwork = -1, then a workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void ssytrs_aa(
const char* uplo,
const INT n,
const INT nrhs,
const f32* restrict A,
const INT lda,
const INT* restrict ipiv,
f32* restrict B,
const INT ldb,
f32* restrict work,
const INT lwork,
INT* info
);
Functions
-
void dsytrs_aa(const char *uplo, const INT n, const INT nrhs, const f64 *restrict A, const INT lda, const INT *restrict ipiv, f64 *restrict B, const INT ldb, f64 *restrict work, const INT lwork, INT *info)#
DSYTRS_AA solves a system of linear equations A*X = B with a real symmetric matrix A using the factorization A = U**T*T*U or A = L*T*L**T computed by DSYTRF_AA.
Parameters
inuploSpecifies whether the details of the factorization are stored as an upper or lower triangular matrix. = ‘U’: Upper triangular, form is A = U**T*T*U; = ‘L’: Lower triangular, form is A = L*T*L**T.
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.
inADouble precision array, dimension (lda, n). Details of factors computed by DSYTRF_AA.
inldaThe leading dimension of the array A. lda >= max(1, n).
inipivInteger array, dimension (n). Details of the interchanges as computed by DSYTRF_AA.
inoutBDouble precision array, 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).
outworkDouble precision array, dimension (max(1, lwork)).
inlworkThe dimension of the array work. If min(n, nrhs) = 0, lwork >= 1, else lwork >= 3*n-2. If lwork = -1, then a workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void dsytrs_aa(
const char* uplo,
const INT n,
const INT nrhs,
const f64* restrict A,
const INT lda,
const INT* restrict ipiv,
f64* restrict B,
const INT ldb,
f64* restrict work,
const INT lwork,
INT* info
);
Functions
-
void csytrs_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)#
CSYTRS_AA solves a system of linear equations A*X = B with a complex symmetric matrix A using the factorization A = U**T*T*U or A = L*T*L**T computed by CSYTRF_AA.
Parameters
inuploSpecifies whether the details of the factorization are stored as an upper or lower triangular matrix. = ‘U’: Upper triangular, form is A = U**T*T*U; = ‘L’: Lower triangular, form is A = L*T*L**T.
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.
inASingle complex array, dimension (lda, n). Details of factors computed by CSYTRF_AA.
inldaThe leading dimension of the array A. lda >= max(1, n).
inipivInteger array, dimension (n). Details of the interchanges as computed by CSYTRF_AA.
inoutBSingle complex array, 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).
outworkSingle complex array, dimension (max(1, lwork)).
inlworkThe dimension of the array work. If min(n, nrhs) = 0, lwork >= 1, else lwork >= 3*n-2. If lwork = -1, then a workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void csytrs_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 zsytrs_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)#
ZSYTRS_AA solves a system of linear equations A*X = B with a complex symmetric matrix A using the factorization A = U**T*T*U or A = L*T*L**T computed by ZSYTRF_AA.
Parameters
inuploSpecifies whether the details of the factorization are stored as an upper or lower triangular matrix. = ‘U’: Upper triangular, form is A = U**T*T*U; = ‘L’: Lower triangular, form is A = L*T*L**T.
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.
inADouble complex array, dimension (lda, n). Details of factors computed by ZSYTRF_AA.
inldaThe leading dimension of the array A. lda >= max(1, n).
inipivInteger array, dimension (n). Details of the interchanges as computed by ZSYTRF_AA.
inoutBDouble complex array, 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).
outworkDouble complex array, dimension (max(1, lwork)).
inlworkThe dimension of the array work. If min(n, nrhs) = 0, lwork >= 1, else lwork >= 3*n-2. If lwork = -1, then a workspace query is assumed.
outinfo= 0: successful exit
< 0: if info = -i, the i-th argument had an illegal value
void zsytrs_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
);