Intel® oneAPI Math Kernel Library Developer Reference - Fortran
Solves a system of linear equations A * X = B with a symmetric matrix.
call ssytrs_aa(uplo, n, nrhs, A, lda, ipiv, B, ldb, work, lwork, info)
call dsytrs_aa(uplo, n, nrhs, A, lda, ipiv, B, ldb, work, lwork, info)
call csytrs_aa(uplo, n, nrhs, A, lda, ipiv, B, ldb, work, lwork, info)
call zsytrs_aa(uplo, n, nrhs, A, lda, ipiv, B, ldb, work, lwork, info)
?sytrs_aa solves a system of linear equations A * X = B with a symmetric matrix A using the factorization A = U*T*UT or A = L*T*LT computed by ?sytrf_aa.
CHARACTER*1
Specifies whether the details of the factorization are stored as an upper or lower triangular matrix.
INTEGER
The order of the matrix A. n ≥ 0.
INTEGER
The number of right-hand sides; that is, the number of columns of the matrix B. nrhs ≥ 0.
REAL for ssytrs_aa
DOUBLE COMPLEX for dsytrs_aa
COMPLEX for csytrs_aa
COMPLEX*16 for zsytrs_aa
Array, dimension (lda,n). Details of factors computed by ?sytrf_aa.
INTEGER
The leading dimension of the array A.lda ≥ max(1, n).
INTEGER
Array, dimension (n). Details of the interchanges as computed by ?sytrf_aa.
REAL for ssytrs_aa
DOUBLE COMPLEX for dsytrs_aa
COMPLEX for csytrs_aa
COMPLEX*16 for zsytrs_aa
Array, dimension (ldb,nrhs). On entry, the right-hand side matrix B.
INTEGER
The leading dimension of the array B. ldb ≥ max(1, n).
Array, dimension (MAX(1,lwork)).
REAL for ssytrs_aa
DOUBLE COMPLEX for dsytrs_aa
COMPLEX for csytrs_aa
COMPLEX*16 for zsytrs_aa
INTEGER
The length of the array work.
REAL for ssytrs_aa
DOUBLE COMPLEX for dsytrs_aa
COMPLEX for csytrs_aa
COMPLEX*16 for zsytrs_aa
On exit, the solution matrix X.
INTEGER