1DSYTRS(1)                LAPACK routine (version 3.2)                DSYTRS(1)
2
3
4

NAME

6       DSYTRS  -  solves a system of linear equations A*X = B with a real sym‐
7       metric matrix A using the factorization A = U*D*U**T or  A  =  L*D*L**T
8       computed by DSYTRF
9

SYNOPSIS

11       SUBROUTINE DSYTRS( UPLO, N, NRHS, A, LDA, IPIV, B, LDB, INFO )
12
13           CHARACTER      UPLO
14
15           INTEGER        INFO, LDA, LDB, N, NRHS
16
17           INTEGER        IPIV( * )
18
19           DOUBLE         PRECISION A( LDA, * ), B( LDB, * )
20

PURPOSE

22       DSYTRS  solves a system of linear equations A*X = B with a real symmet‐
23       ric matrix A using the factorization A = U*D*U**T or A = L*D*L**T  com‐
24       puted by DSYTRF.
25

ARGUMENTS

27       UPLO    (input) CHARACTER*1
28               Specifies  whether  the details of the factorization are stored
29               as an upper or lower triangular matrix.  = 'U':  Upper triangu‐
30               lar, form is A = U*D*U**T;
31               = 'L':  Lower triangular, form is A = L*D*L**T.
32
33       N       (input) INTEGER
34               The order of the matrix A.  N >= 0.
35
36       NRHS    (input) INTEGER
37               The  number of right hand sides, i.e., the number of columns of
38               the matrix B.  NRHS >= 0.
39
40       A       (input) DOUBLE PRECISION array, dimension (LDA,N)
41               The block diagonal matrix D and the multipliers used to  obtain
42               the factor U or L as computed by DSYTRF.
43
44       LDA     (input) INTEGER
45               The leading dimension of the array A.  LDA >= max(1,N).
46
47       IPIV    (input) INTEGER array, dimension (N)
48               Details  of  the  interchanges  and the block structure of D as
49               determined by DSYTRF.
50
51       B       (input/output) DOUBLE PRECISION array, dimension (LDB,NRHS)
52               On entry, the right hand side matrix B.  On exit, the  solution
53               matrix X.
54
55       LDB     (input) INTEGER
56               The leading dimension of the array B.  LDB >= max(1,N).
57
58       INFO    (output) INTEGER
59               = 0:  successful exit
60               < 0:  if INFO = -i, the i-th argument had an illegal value
61
62
63
64 LAPACK routine (version 3.2)    November 2008                       DSYTRS(1)
Impressum