?sytrs2

Solves a system of linear equations with a UDU- or LDL-factored symmetric matrix computed by ?sytrf and converted by ?syconv.

Syntax

FORTRAN 77:

call ssytrs2( uplo, n, nrhs, a, lda, ipiv, b, ldb, work, info )

call dsytrs2( uplo, n, nrhs, a, lda, ipiv, b, ldb, work, info )

call csytrs2( uplo, n, nrhs, a, lda, ipiv, b, ldb, work, info )

call zsytrs2( uplo, n, nrhs, a, lda, ipiv, b, ldb, work, info )

FORTRAN 95:

call sytrs2( a,b,ipiv[,uplo][,info] )

C:

lapack_int LAPACKE_<?>sytrs2( int matrix_order, char uplo, lapack_int n, lapack_int nrhs, const <datatype>* a, lapack_int lda, const lapack_int* ipiv, <datatype>* b, lapack_int ldb );

Include Files

Description

The routine solves a system of linear equations A*X = B with a symmetric matrix A using the factorization of A:

if uplo='U',

A = U*D*UT

if uplo='L',

A = L*D*LT

where

The factorization is computed by ?sytrf and converted by ?syconv.

Input Parameters

The data types are given for the Fortran interface. A <datatype> placeholder, if present, is used for the C interface data types in the C interface section above. See C Interface Conventions for the C interface principal conventions and type definitions.

uplo

CHARACTER*1. Must be 'U' or 'L'.

Indicates how the input matrix A has been factored:

If uplo = 'U', the array a stores the upper triangular factor U of the factorization A = U*D*UT.

If uplo = 'L', the array a stores the lower triangular factor L of the factorization A = L*D*LT.

n

INTEGER. The order of matrix A; n 0.

nrhs

INTEGER. The number of right-hand sides; nrhs 0.

a, b

REAL for ssytrs2

DOUBLE PRECISION for dsytrs2

COMPLEX for csytrs2

DOUBLE COMPLEX for zsytrs2

Arrays: a(lda,*), b(ldb,*).

The array a contains the block diagonal matrix D and the multipliers used to obtain the factor U or L as computed by ?sytrf.

The array b contains the right-hand side matrix B.

The second dimension of a must be at least max(1,n), and the second dimension of b at least max(1,nrhs).

lda

INTEGER. The leading dimension of a; lda max(1, n).

ldb

INTEGER. The leading dimension of b; ldb max(1, n).

ipiv

INTEGER. Array of DIMENSION n. The ipiv array contains details of the interchanges and the block structure of D as determined by ?sytrf.

work

REAL for ssytrs2

DOUBLE PRECISION for dsytrs2

COMPLEX for csytrs2

DOUBLE COMPLEX for zsytrs2

Workspace array, DIMENSION n.

Output Parameters

b

Overwritten by the solution matrix X.

info

INTEGER. If info = 0, the execution is successful.

If info = -i, the i-th parameter had an illegal value.

Fortran 95 Interface Notes

Routines in Fortran 95 interface have fewer arguments in the calling sequence than their FORTRAN 77 counterparts. For general conventions applied to skip redundant or reconstructible arguments, see Fortran 95 Interface Conventions.

Specific details for the routine sytrs2 interface are as follows:

a

Holds the matrix A of size (n, n).

b

Holds the matrix B of size (n, nrhs).

ipiv

Holds the vector of length n.

uplo

Indicates how the input matrix A has been factored. Must be 'U' or 'L'.

See Also


Submit feedback on this help topic