1SPTTRF(1) LAPACK routine (version 3.1) SPTTRF(1)
2
3
4
6 SPTTRF - the L*D*L' factorization of a real symmetric positive definite
7 tridiagonal matrix A
8
10 SUBROUTINE SPTTRF( N, D, E, INFO )
11
12 INTEGER INFO, N
13
14 REAL D( * ), E( * )
15
17 SPTTRF computes the L*D*L' factorization of a real symmetric positive
18 definite tridiagonal matrix A. The factorization may also be regarded
19 as having the form A = U'*D*U.
20
21
23 N (input) INTEGER
24 The order of the matrix A. N >= 0.
25
26 D (input/output) REAL array, dimension (N)
27 On entry, the n diagonal elements of the tridiagonal matrix A.
28 On exit, the n diagonal elements of the diagonal matrix D from
29 the L*D*L' factorization of A.
30
31 E (input/output) REAL array, dimension (N-1)
32 On entry, the (n-1) subdiagonal elements of the tridiagonal
33 matrix A. On exit, the (n-1) subdiagonal elements of the unit
34 bidiagonal factor L from the L*D*L' factorization of A. E can
35 also be regarded as the superdiagonal of the unit bidiagonal
36 factor U from the U'*D*U factorization of A.
37
38 INFO (output) INTEGER
39 = 0: successful exit
40 < 0: if INFO = -k, the k-th argument had an illegal value
41 > 0: if INFO = k, the leading minor of order k is not positive
42 definite; if k < N, the factorization could not be completed,
43 while if k = N, the factorization was completed, but D(N) <= 0.
44
45
46
47 LAPACK routine (version 3.1) November 2006 SPTTRF(1)