1ZGTTRF(1)                LAPACK routine (version 3.1)                ZGTTRF(1)
2
3
4

NAME

6       ZGTTRF  -  an  LU factorization of a complex tridiagonal matrix A using
7       elimination with partial pivoting and row interchanges
8

SYNOPSIS

10       SUBROUTINE ZGTTRF( N, DL, D, DU, DU2, IPIV, INFO )
11
12           INTEGER        INFO, N
13
14           INTEGER        IPIV( * )
15
16           COMPLEX*16     D( * ), DL( * ), DU( * ), DU2( * )
17

PURPOSE

19       ZGTTRF computes an LU factorization of a complex tridiagonal  matrix  A
20       using elimination with partial pivoting and row interchanges.
21
22       The factorization has the form
23          A = L * U
24       where  L is a product of permutation and unit lower bidiagonal matrices
25       and U is upper triangular with nonzeros in only the main  diagonal  and
26       first two superdiagonals.
27
28

ARGUMENTS

30       N       (input) INTEGER
31               The order of the matrix A.
32
33       DL      (input/output) COMPLEX*16 array, dimension (N-1)
34               On entry, DL must contain the (n-1) sub-diagonal elements of A.
35
36               On exit, DL is overwritten by the (n-1) multipliers that define
37               the matrix L from the LU factorization of A.
38
39       D       (input/output) COMPLEX*16 array, dimension (N)
40               On entry, D must contain the diagonal elements of A.
41
42               On exit, D is overwritten by the n  diagonal  elements  of  the
43               upper triangular matrix U from the LU factorization of A.
44
45       DU      (input/output) COMPLEX*16 array, dimension (N-1)
46               On  entry, DU must contain the (n-1) super-diagonal elements of
47               A.
48
49               On exit, DU is overwritten by the (n-1) elements of  the  first
50               super-diagonal of U.
51
52       DU2     (output) COMPLEX*16 array, dimension (N-2)
53               On exit, DU2 is overwritten by the (n-2) elements of the second
54               super-diagonal of U.
55
56       IPIV    (output) INTEGER array, dimension (N)
57               The pivot indices; for 1 <= i <= n, row i  of  the  matrix  was
58               interchanged with row IPIV(i).  IPIV(i) will always be either i
59               or i+1; IPIV(i)  =  i  indicates  a  row  interchange  was  not
60               required.
61
62       INFO    (output) INTEGER
63               = 0:  successful exit
64               < 0:  if INFO = -k, the k-th argument had an illegal value
65               >  0:   if  INFO = k, U(k,k) is exactly zero. The factorization
66               has been completed, but the factor U is exactly  singular,  and
67               division  by zero will occur if it is used to solve a system of
68               equations.
69
70
71
72 LAPACK routine (version 3.1)    November 2006                       ZGTTRF(1)
Impressum