1SGTTS2(1) LAPACK auxiliary routine (version 3.2) SGTTS2(1)
2
3
4
6 SGTTS2 - solves one of the systems of equations A*X = B or A'*X = B,
7
9 SUBROUTINE SGTTS2( ITRANS, N, NRHS, DL, D, DU, DU2, IPIV, B, LDB )
10
11 INTEGER ITRANS, LDB, N, NRHS
12
13 INTEGER IPIV( * )
14
15 REAL B( LDB, * ), D( * ), DL( * ), DU( * ), DU2( * )
16
18 SGTTS2 solves one of the systems of equations
19 A*X = B or A'*X = B, with a tridiagonal matrix A using the LU fac‐
20 torization computed by SGTTRF.
21
23 ITRANS (input) INTEGER
24 Specifies the form of the system of equations. = 0: A * X = B
25 (No transpose)
26 = 1: A'* X = B (Transpose)
27 = 2: A'* X = B (Conjugate transpose = Transpose)
28
29 N (input) INTEGER
30 The order of the matrix A.
31
32 NRHS (input) INTEGER
33 The number of right hand sides, i.e., the number of columns of
34 the matrix B. NRHS >= 0.
35
36 DL (input) REAL array, dimension (N-1)
37 The (n-1) multipliers that define the matrix L from the LU fac‐
38 torization of A.
39
40 D (input) REAL array, dimension (N)
41 The n diagonal elements of the upper triangular matrix U from
42 the LU factorization of A.
43
44 DU (input) REAL array, dimension (N-1)
45 The (n-1) elements of the first super-diagonal of U.
46
47 DU2 (input) REAL array, dimension (N-2)
48 The (n-2) elements of the second super-diagonal of U.
49
50 IPIV (input) INTEGER array, dimension (N)
51 The pivot indices; for 1 <= i <= n, row i of the matrix was
52 interchanged with row IPIV(i). IPIV(i) will always be either i
53 or i+1; IPIV(i) = i indicates a row interchange was not
54 required.
55
56 B (input/output) REAL array, dimension (LDB,NRHS)
57 On entry, the matrix of right hand side vectors B. On exit, B
58 is overwritten by the solution vectors X.
59
60 LDB (input) INTEGER
61 The leading dimension of the array B. LDB >= max(1,N).
62
63
64
65 LAPACK auxiliary routine (versionNo3v.e2m)ber 2008 SGTTS2(1)