Intel® oneAPI Math Kernel Library Developer Reference - C
Solves a system of linear equations A * X = B with a symmetric matrix.
lapack_int LAPACKE_ssytrs_aa (int matrix_layout, char uplo, lapack_int n, lapack_int nrhs, const float * A, lapack_int lda, const lapack_int * ipiv, float * B, lapack_int ldb);
lapack_int LAPACKE_dsytrs_aa (int matrix_layout, char uplo, lapack_int n, lapack_int nrhs, const double * A, lapack_int lda, const lapack_int * ipiv, double * B, lapack_int ldb);
lapack_int LAPACKE_csytrs_aa (int matrix_layout, char uplo, lapack_int n, lapack_int nrhs, const lapack_complex_float * A, lapack_int lda, const lapack_int * ipiv, lapack_complex_float * B, lapack_int ldb);
lapack_int LAPACKE_zsytrs_aa (int matrix_layout, char uplo, lapack_int n, lapack_int nrhs, const lapack_complex_double * A, lapack_int lda, const lapack_int * ipiv, lapack_complex_double * B, lapack_int ldb);
?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.
Specifies whether matrix storage layout is row major (LAPACK_ROW_MAJOR) or column major (LAPACK_COL_MAJOR).
Specifies whether the details of the factorization are stored as an upper or lower triangular matrix.
The order of the matrix A. n ≥ 0.
The number of right-hand sides; that is, the number of columns of the matrix B. nrhs ≥ 0.
Array of size max(1, lda*n). Details of factors computed by ?sytrf_aa.
The leading dimension of the array A.
Array of size n. Details of the interchanges as computed by ?sytrf_aa.
Array of size max(1, ldb*nrhs). On entry, the right-hand side matrix B.
The leading dimension of the array B. ldb ≥ max(1, n) for column-major layout and ldb ≥ nrhs for row-major layout.
On exit, the solution matrix X.
This function returns a value info.
= 0: Successful exit.
< 0: If info = -i, the ith argument had an illegal value.