PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dtrrfs (f07th)
Purpose
nag_lapack_dtrrfs (f07th) returns error bounds for the solution of a real triangular system of linear equations with multiple right-hand sides, or .
Syntax
[
ferr,
berr,
info] = f07th(
uplo,
trans,
diag,
a,
b,
x, 'n',
n, 'nrhs_p',
nrhs_p)
[
ferr,
berr,
info] = nag_lapack_dtrrfs(
uplo,
trans,
diag,
a,
b,
x, 'n',
n, 'nrhs_p',
nrhs_p)
Description
nag_lapack_dtrrfs (f07th) returns the backward errors and estimated bounds on the forward errors for the solution of a real triangular system of linear equations with multiple right-hand sides or . The function handles each right-hand side vector (stored as a column of the matrix ) independently, so we describe the function of nag_lapack_dtrrfs (f07th) in terms of a single right-hand side and solution .
Given a computed solution
, the function computes the
component-wise backward error
. This is the size of the smallest relative perturbation in each element of
and
such that
is the exact solution of a perturbed system
Then the function estimates a bound for the
component-wise forward error in the computed solution, defined by:
where
is the true solution.
For details of the method, see the
F07 Chapter Introduction.
References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
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:
– double array
-
The first dimension of the array
a must be at least
.
The second dimension of the array
a must be at least
.
The
by
triangular matrix
.
- If , is upper triangular and the elements of the array below the diagonal are not referenced.
- If , is lower triangular and the elements of the array above the diagonal are not referenced.
- If , the diagonal elements of are assumed to be , and are not referenced.
- 5:
– 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 .
- 6:
– double array
-
The first dimension of the array
x must be at least
.
The second dimension of the array
x must be at least
.
The
by
solution matrix
, as returned by
nag_lapack_dtrtrs (f07te).
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the arrays
a,
b,
x and the second dimension of the array
a.
, the order of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the second dimension of the arrays
b,
x. (An error is raised if these dimensions are not equal.)
, the number of right-hand sides.
Constraint:
.
Output Parameters
- 1:
– double array
-
contains an estimated error bound for the th solution vector, that is, the th column of , for .
- 2:
– double array
-
contains the component-wise backward error bound for the th solution vector, that is, the th column of , for .
- 3:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
-
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
Accuracy
The bounds returned in
ferr are not rigorous, because they are estimated, not computed exactly; but in practice they almost always overestimate the actual error.
Further Comments
A call to nag_lapack_dtrrfs (f07th), for each right-hand side, involves solving a number of systems of linear equations of the form or ; the number is usually or and never more than . Each solution involves approximately floating-point operations.
The complex analogue of this function is
nag_lapack_ztrrfs (f07tv).
Example
This example solves the system of equations
and to compute forward and backward error bounds, where
Open in the MATLAB editor:
f07th_example
function f07th_example
fprintf('f07th example results\n\n');
a = [ 4.30, 0, 0, 0;
-3.96, -4.87, 0, 0;
0.40, 0.31, -8.02, 0;
-0.27, 0.07, -5.95, 0.12];
b = [-12.90, -21.50;
16.75, 14.93;
-17.55, 6.33;
-11.04, 8.09];
uplo = 'L';
trans = 'N';
diag = 'N';
[x, info] = f07te( ...
uplo, trans, diag, a, b);
[ferr, berr, info] = f07th( ...
uplo, trans, diag, a, b, x);
[ifail] = x04ca( ...
'Gen', diag, x, 'Solution(s)');
fprintf('\nBackward errors (machine-dependent)\n ')
fprintf('%11.1e', berr);
fprintf('\nEstimated forward error bounds (machine-dependent)\n ')
fprintf('%11.1e', ferr);
fprintf('\n');
f07th example results
Solution(s)
1 2
1 -3.0000 -5.0000
2 -1.0000 1.0000
3 2.0000 -1.0000
4 1.0000 6.0000
Backward errors (machine-dependent)
6.9e-17 0.0e+00
Estimated forward error bounds (machine-dependent)
8.3e-14 2.6e-14
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015