PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dtbtrs (f07ve)
Purpose
nag_lapack_dtbtrs (f07ve) solves a real triangular band system of linear equations with multiple right-hand sides, or .
Syntax
[
b,
info] = f07ve(
uplo,
trans,
diag,
kd,
ab,
b, 'n',
n, 'nrhs_p',
nrhs_p)
[
b,
info] = nag_lapack_dtbtrs(
uplo,
trans,
diag,
kd,
ab,
b, 'n',
n, 'nrhs_p',
nrhs_p)
Description
nag_lapack_dtbtrs (f07ve) solves a real triangular band system of linear equations or .
References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Higham N J (1989) The accuracy of solutions to triangular systems SIAM J. Numer. Anal. 26 1252–1265
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
Specifies whether
is upper or lower triangular.
- is upper triangular.
- is lower triangular.
Constraint:
or .
- 2:
– string (length ≥ 1)
-
Indicates the form of the equations.
- The equations are of the form .
- or
- The equations are of the form .
Constraint:
, or .
- 3:
– string (length ≥ 1)
-
Indicates whether
is a nonunit or unit triangular matrix.
- is a nonunit triangular matrix.
- is a unit triangular matrix; the diagonal elements are not referenced and are assumed to be .
Constraint:
or .
- 4:
– int64int32nag_int scalar
-
, the number of superdiagonals of the matrix if , or the number of subdiagonals if .
Constraint:
.
- 5:
– double array
-
The first dimension of the array
ab must be at least
.
The second dimension of the array
ab must be at least
.
The
by
triangular band matrix
.
The matrix is stored in rows
to
, more precisely,
- if , the elements of the upper triangle of within the band must be stored with element in ;
- if , the elements of the lower triangle of within the band must be stored with element in
If , the diagonal elements of are assumed to be , and are not referenced.
- 6:
– 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 second dimension of the array
ab.
, the order of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
b.
, the number of right-hand sides.
Constraint:
.
Output Parameters
- 1:
– double array
-
The first dimension of the array
b will be
.
The second dimension of the array
b will be
.
The by solution matrix .
- 2:
– 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.
is singular and the solution has not been computed.
Accuracy
The solutions of triangular systems of equations are usually computed to high accuracy. See
Higham (1989).
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.
If
is the true solution, then the computed solution
satisfies a forward error bound of the form
where
.
Note that ; can be much smaller than and it is also possible for to be much larger (or smaller) than .
Forward and backward error bounds can be computed by calling
nag_lapack_dtbrfs (f07vh), and an estimate for
can be obtained by calling
nag_lapack_dtbcon (f07vg) with
.
Further Comments
The total number of floating-point operations is approximately if .
The complex analogue of this function is
nag_lapack_ztbtrs (f07vs).
Example
This example solves the system of equations
, where
Here
is treated as a lower triangular band matrix with one subdiagonal.
Open in the MATLAB editor:
f07ve_example
function f07ve_example
fprintf('f07ve example results\n\n');
kd = int64(1);
ab = [-4.16, 4.78, 6.32, 0.16;
-2.25, 5.86, -4.82, 0.00];
b = [-16.64, -4.16;
-13.78, -16.59;
13.10, -4.94;
-14.14, -9.96];
uplo = 'L';
trans = 'N';
diag = 'N';
[x, info] = f07ve( ...
uplo, trans, diag, kd, ab, b);
[ifail] = x04ca( ...
'Gen', diag, x, 'Solution(s)');
f07ve example results
Solution(s)
1 2
1 4.0000 1.0000
2 -1.0000 -3.0000
3 3.0000 2.0000
4 2.0000 -2.0000
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015