NAG Library Routine Document
f07csf
(zgttrs)
1
Purpose
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).
2
Specification
Fortran Interface
Subroutine f07csf ( |
trans,
n,
nrhs,
dl,
d,
du,
du2,
ipiv,
b,
ldb,
info) |
Integer, Intent (In) | :: |
n,
nrhs,
ipiv(*),
ldb | Integer, Intent (Out) | :: |
info | Complex (Kind=nag_wp), Intent (In) | :: |
dl(*),
d(*),
du(*),
du2(*) | Complex (Kind=nag_wp), Intent (Inout) | :: |
b(ldb,*) | Character (1), Intent (In) | :: |
trans |
|
C Header Interface
#include nagmk26.h
void |
f07csf_ (
const char *trans,
const Integer *n,
const Integer *nrhs,
const Complex dl[],
const Complex d[],
const Complex du[],
const Complex du2[],
const Integer ipiv[],
Complex b[],
const Integer *ldb,
Integer *info,
const Charlen length_trans) |
|
The routine may be called by its
LAPACK
name zgttrs.
3
Description
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.
4
References
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
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
5
Arguments
- 1: – Character(1)Input
-
On entry: specifies the equations to be solved as follows:
- Solve for .
- Solve for .
- Solve for .
Constraint:
, or .
- 2: – IntegerInput
-
On entry: , the order of the matrix .
Constraint:
.
- 3: – IntegerInput
-
On entry: , the number of right-hand sides, i.e., the number of columns of the matrix .
Constraint:
.
- 4: – 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: – 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: – 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: – 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: – 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: – 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: – IntegerInput
-
On entry: the first dimension of the array
b as declared in the (sub)program from which
f07csf (zgttrs) is called.
Constraint:
.
- 11: – IntegerOutput
On exit:
unless the routine detects an error (see
Section 6).
6
Error Indicators and Warnings
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
7
Accuracy
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.
8
Parallelism and Performance
f07csf (zgttrs) is not threaded in any implementation.
The total number of floating-point operations required to solve the equations or or is proportional to .
The real analogue of this routine is
f07cef (dgttrs).
10
Example
This example solves the equations
where
is the tridiagonal matrix
and
10.1
Program Text
Program Text (f07csfe.f90)
10.2
Program Data
Program Data (f07csfe.d)
10.3
Program Results
Program Results (f07csfe.r)