PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zgtsv (f07cn)
Purpose
nag_lapack_zgtsv (f07cn) computes the solution to a complex system of linear equations
where
is an
by
tridiagonal matrix and
and
are
by
matrices.
Syntax
[
dl,
d,
du,
b,
info] = f07cn(
dl,
d,
du,
b, 'n',
n, 'nrhs_p',
nrhs_p)
[
dl,
d,
du,
b,
info] = nag_lapack_zgtsv(
dl,
d,
du,
b, 'n',
n, 'nrhs_p',
nrhs_p)
Description
nag_lapack_zgtsv (f07cn) uses Gaussian elimination with partial pivoting and row interchanges to solve the equations . The matrix is factorized as , where is a permutation matrix, is unit lower triangular with at most one nonzero subdiagonal element per column, and is an upper triangular band matrix, with two superdiagonals.
Note that the equations
may be solved by interchanging the order of the arguments
du and
dl.
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
Parameters
Compulsory Input Parameters
- 1:
– complex array
-
The dimension of the array
dl
must be at least
Must contain the subdiagonal elements of the matrix .
- 2:
– complex array
-
The dimension of the array
d
must be at least
Must contain the diagonal elements of the matrix .
- 3:
– complex array
-
The dimension of the array
du
must be at least
Must contain the superdiagonal elements of the matrix .
- 4:
– complex array
-
The first dimension of the array
b must be at least
.
The second dimension of the array
b must be at least
.
Note: to solve the equations
, where
is a single right-hand side,
b may be supplied as a one-dimensional array with length
.
The by right-hand side matrix .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
b and the dimension of the array
d.
, the number of linear equations, i.e., the order of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
b.
, the number of right-hand sides, i.e., the number of columns of the matrix .
Constraint:
.
Output Parameters
- 1:
– complex array
-
The dimension of the array
dl will be
If no constraints are violated,
dl stores the (
) elements of the second superdiagonal of the upper triangular matrix
from the
factorization of
, in
.
- 2:
– complex array
-
The dimension of the array
d will be
If no constraints are violated,
d stores the
diagonal elements of the upper triangular matrix
from the
factorization of
.
- 3:
– complex array
-
The dimension of the array
du will be
If no constraints are violated,
du stores the
elements of the first superdiagonal of
.
- 4:
– complex array
-
The first dimension of the array
b will be
.
The second dimension of the array
b will be
.
Note: to solve the equations
, where
is a single right-hand side,
b may be supplied as a one-dimensional array with length
.
If , the by solution matrix .
- 5:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
- W
-
Element of the diagonal is exactly zero,
and the solution has not been computed. The factorization has not been
completed unless .
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.
Alternatives to
nag_lapack_zgtsv (f07cn), which return condition and error estimates are
nag_linsys_complex_tridiag_solve (f04cc) and
nag_lapack_zgtsvx (f07cp).
Further Comments
The total number of floating-point operations required to solve the equations is proportional to .
The real analogue of this function is
nag_lapack_dgtsv (f07ca).
Example
This example solves the equations
where
is the tridiagonal matrix
and
Open in the MATLAB editor:
f07cn_example
function f07cn_example
fprintf('f07cn example results\n\n');
du = [ 2 - 1i 2 + 1i -1 + 1i 1 - 1i ];
d = [-1.3 + 1.3i -1.3 + 1.3i -1.3 + 3.3i -0.3 + 4.3i -3.3 + 1.3i];
dl = [ 1 - 2i 1 + 1i 2 - 3i 1 + 1i ];
b = [ 2.4 - 5.0i;
3.4 + 18.2i;
-14.7 + 9.7i;
31.9 - 7.7i;
-1 + 1.6i];
[dl, d, du, x, info] = f07cn( ...
dl, d, du, b);
disp('Solution');
disp(x);
f07cn example results
Solution
1.0000 + 1.0000i
3.0000 - 1.0000i
4.0000 + 5.0000i
-1.0000 - 2.0000i
1.0000 - 1.0000i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015