F07CSF (ZGTTRS) computes the solution to a complex system of linear equations
or
or
, where
is an
by
tridiagonal matrix and
and
are
by
matrices, using the
factorization returned by
F07CRF (ZGTTRF).
F07CSF (ZGTTRS) should be preceded by a call to
F07CRF (ZGTTRF), which uses Gaussian elimination with partial pivoting and row interchanges to factorize the matrix
as
where
is a permutation matrix,
is unit lower triangular with at most one nonzero subdiagonal element in each column, and
is an upper triangular band matrix, with two superdiagonals. F07CSF (ZGTTRS) then utilizes the factorization to solve the required equations.
Anderson E, Bai Z, Bischof C, Blackford S, Demmel J, Dongarra J J, Du Croz J J, Greenbaum A, Hammarling S, McKenney A and Sorensen D (1999)
LAPACK Users' Guide (3rd Edition) SIAM, Philadelphia
http://www.netlib.org/lapack/lug
- 1: TRANS – CHARACTER(1)Input
On entry: specifies the equations to be solved as follows:
- Solve for .
- Solve for .
- Solve for .
Constraint:
, or .
- 2: N – INTEGERInput
On entry: , the order of the matrix .
Constraint:
.
- 3: NRHS – INTEGERInput
On entry: , the number of right-hand sides, i.e., the number of columns of the matrix .
Constraint:
.
- 4: DL() – COMPLEX (KIND=nag_wp) arrayInput
-
Note: the dimension of the array
DL
must be at least
.
On entry: must contain the multipliers that define the matrix of the factorization of .
- 5: D() – COMPLEX (KIND=nag_wp) arrayInput
-
Note: the dimension of the array
D
must be at least
.
On entry: must contain the diagonal elements of the upper triangular matrix from the factorization of .
- 6: DU() – COMPLEX (KIND=nag_wp) arrayInput
-
Note: the dimension of the array
DU
must be at least
.
On entry: must contain the elements of the first superdiagonal of .
- 7: DU2() – COMPLEX (KIND=nag_wp) arrayInput
-
Note: the dimension of the array
DU2
must be at least
.
On entry: must contain the elements of the second superdiagonal of .
- 8: IPIV() – INTEGER arrayInput
-
Note: the dimension of the array
IPIV
must be at least
.
On entry: must contain the pivot indices that define the permutation matrix . At the th step, row of the matrix was interchanged with row , and must always be either or , indicating that a row interchange was not performed.
- 9: B(LDB,) – COMPLEX (KIND=nag_wp) arrayInput/Output
Note: the second dimension of the array
B
must be at least
.
On entry: the by matrix of right-hand sides .
On exit: the by solution matrix .
- 10: LDB – INTEGERInput
On entry: the first dimension of the array
B as declared in the (sub)program from which F07CSF (ZGTTRS) is called.
Constraint:
.
- 11: INFO – INTEGEROutput
On exit:
unless the routine detects an error (see
Section 6).
The computed solution for a single right-hand side,
, satisfies an equation of the form
where
and
is the
machine precision. An approximate error bound for the computed solution is given by
where
, the condition number of
with respect to the solution of the linear equations. See Section 4.4 of
Anderson et al. (1999) for further details.
Following the use of this routine
F07CUF (ZGTCON) can be used to estimate the condition number of
and
F07CVF (ZGTRFS) can be used to obtain approximate error bounds.
The real analogue of this routine is
F07CEF (DGTTRS).
This example solves the equations
where
is the tridiagonal matrix
and