PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dgtsvx (f07cb)
Purpose
nag_lapack_dgtsvx (f07cb) uses the
factorization to compute the solution to a real system of linear equations
where
is a tridiagonal matrix of order
and
and
are
by
matrices. Error bounds on the solution and a condition estimate are also provided.
Syntax
[
dlf,
df,
duf,
du2,
ipiv,
x,
rcond,
ferr,
berr,
info] = f07cb(
fact,
trans,
dl,
d,
du,
dlf,
df,
duf,
du2,
ipiv,
b, 'n',
n, 'nrhs_p',
nrhs_p)
[
dlf,
df,
duf,
du2,
ipiv,
x,
rcond,
ferr,
berr,
info] = nag_lapack_dgtsvx(
fact,
trans,
dl,
d,
du,
dlf,
df,
duf,
du2,
ipiv,
b, 'n',
n, 'nrhs_p',
nrhs_p)
Description
nag_lapack_dgtsvx (f07cb) performs the following steps:
1. |
If , the decomposition is used to factor the matrix as , where is a product of permutation and unit lower bidiagonal matrices and is upper triangular with nonzeros in only the main diagonal and first two superdiagonals. |
2. |
If some , so that is exactly singular, then the function returns with . Otherwise, the factored form of is used to estimate the condition number of the matrix . If the reciprocal of the condition number is less than machine precision, is returned as a warning, but the function still goes on to solve for and compute error bounds as described below. |
3. |
The system of equations is solved for using the factored form of . |
4. |
Iterative refinement is applied to improve the computed solution matrix and to calculate error bounds and backward error estimates for it. |
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
Higham N J (2002) Accuracy and Stability of Numerical Algorithms (2nd Edition) SIAM, Philadelphia
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
Specifies whether or not the factorized form of the matrix
has been supplied.
- dlf, df, duf, du2 and ipiv contain the factorized form of the matrix . dlf, df, duf, du2 and ipiv will not be modified.
- The matrix will be copied to dlf, df and duf and factorized.
Constraint:
or .
- 2:
– string (length ≥ 1)
-
Specifies the form of the system of equations.
- (No transpose).
- or
- (Transpose).
Constraint:
, or .
- 3:
– double array
-
The dimension of the array
dl
must be at least
The subdiagonal elements of .
- 4:
– double array
-
The dimension of the array
d
must be at least
The diagonal elements of .
- 5:
– double array
-
The dimension of the array
du
must be at least
The superdiagonal elements of .
- 6:
– double array
-
The dimension of the array
dlf
must be at least
If
,
dlf contains the
multipliers that define the matrix
from the
factorization of
.
- 7:
– double array
-
The dimension of the array
df
must be at least
If
,
df contains the
diagonal elements of the upper triangular matrix
from the
factorization of
.
- 8:
– double array
-
The dimension of the array
duf
must be at least
If
,
duf contains the
elements of the first superdiagonal of
.
- 9:
– double array
-
The dimension of the array
du2
must be at least
If
,
du2 contains the (
) elements of the second superdiagonal of
.
- 10:
– int64int32nag_int array
-
The dimension of the array
ipiv
must be at least
If
,
ipiv contains the pivot indices from the
factorization of
.
- 11:
– double array
-
The first dimension of the array
b must be at least
.
The second dimension of the array
b must be at least
.
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 arrays
d,
df,
ipiv.
, 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:
– double array
-
The dimension of the array
dlf will be
If
,
dlf contains the
multipliers that define the matrix
from the
factorization of
.
- 2:
– double array
-
The dimension of the array
df will be
If
,
df contains the
diagonal elements of the upper triangular matrix
from the
factorization of
.
- 3:
– double array
-
The dimension of the array
duf will be
If
,
duf contains the
elements of the first superdiagonal of
.
- 4:
– double array
-
The dimension of the array
du2 will be
If
,
du2 contains the (
) elements of the second superdiagonal of
.
- 5:
– int64int32nag_int array
-
The dimension of the array
ipiv will be
If
,
ipiv contains the pivot indices from the
factorization of
; row
of the matrix was interchanged with row
.
will always be either
or
;
indicates a row interchange was not required.
- 6:
– double array
-
The first dimension of the array
x will be
.
The second dimension of the array
x will be
.
If or , the by solution matrix .
- 7:
– double scalar
-
The estimate of the reciprocal condition number of the matrix
. If
, the matrix may be exactly singular. This condition is indicated by
. Otherwise, if
rcond is less than the
machine precision, the matrix is singular to working precision. This condition is indicated by
.
- 8:
– double array
-
If
or
, an estimate of the forward error bound for each computed solution vector, such that
where
is the
th column of the computed solution returned in the array
x and
is the corresponding column of the exact solution
. The estimate is as reliable as the estimate for
rcond, and is almost always a slight overestimate of the true error.
- 9:
– double array
-
If or , an estimate of the component-wise relative backward error of each computed solution vector (i.e., the smallest relative change in any element of or that makes an exact solution).
- 10:
– 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.
The factorization has not been completed, but the factor is exactly
singular, so the solution and error bounds could not be computed.
is returned.
- W
-
Element of the diagonal is exactly zero.
The factorization has been completed, but the factor is exactly singular, so the solution and error bounds could not be computed.
is returned.
- W
-
is nonsingular, but
rcond is less than
machine precision, meaning that the matrix is singular to working precision.
Nevertheless, the solution and error bounds are computed because there
are a number of situations where the computed solution can be more accurate
than the value of
rcond would suggest.
Accuracy
For each right-hand side vector
, the computed solution
is the exact solution of a perturbed system of equations
, where
is a modest linear function of
, and
is the
machine precision. See Section 9.3 of
Higham (2002) for further details.
If
is the true solution, then the computed solution
satisfies a forward error bound of the form
where
.
If
is the
th column of
, then
is returned in
and a bound on
is returned in
. See Section 4.4 of
Anderson et al. (1999) for further details.
Further Comments
The total number of floating-point operations required to solve the equations is proportional to .
The condition number estimation typically requires between four and five solves and never more than eleven solves, following the factorization. The solution is then refined, and the errors estimated, using iterative refinement.
In practice the condition number estimator is very reliable, but it can underestimate the true condition number; see Section 15.3 of
Higham (2002) for further details.
The complex analogue of this function is
nag_lapack_zgtsvx (f07cp).
Example
This example solves the equations
where
is the tridiagonal matrix
and
Estimates for the backward errors, forward errors and condition number are also output.
Open in the MATLAB editor:
f07cb_example
function f07cb_example
fprintf('f07cb example results\n\n');
du = [ 2.1 -1.0 1.9 8.0];
d = [3.0 2.3 -5.0 -0.9 7.1];
dl = [3.4 3.6 7.0 -6.0 ];
n = numel(d);
b = [ 2.7, 6.6;
-0.5, 10.8;
2.6, -3.2;
0.6, -11.2;
2.7, 19.1];
fact = 'No factors';
trans = 'No transpose';
dlf = dl;
df = d;
duf = du;
du2 = zeros(n-2, 1);
ipiv = zeros(n,1,'int64');
[dlf, df, duf, du2, ipiv, x, rcond, ferr, berr, info] = ...
f07cb( ...
fact, trans, dl, d, du, dlf, df, duf, du2, ipiv, b);
disp('Solution(s)');
disp(x);
disp('Backward errors (machine-dependent)');
fprintf('%10.1e',berr);
fprintf('\n');
disp('Estimated forward error bounds (machine-dependent)');
fprintf('%10.1e',ferr);
fprintf('\n\n');
disp('Estimate of reciprocal condition number');
fprintf('%10.1e\n',rcond);
f07cb example results
Solution(s)
-4.0000 5.0000
7.0000 -4.0000
3.0000 -3.0000
-4.0000 -2.0000
-3.0000 1.0000
Backward errors (machine-dependent)
7.2e-17 5.9e-17
Estimated forward error bounds (machine-dependent)
9.4e-15 1.4e-14
Estimate of reciprocal condition number
1.1e-02
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015