PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_ztprfs (f07uv)
Purpose
nag_lapack_ztprfs (f07uv) returns error bounds for the solution of a complex triangular system of linear equations with multiple right-hand sides, , or , using packed storage.
Syntax
[
ferr,
berr,
info] = f07uv(
uplo,
trans,
diag,
ap,
b,
x, 'n',
n, 'nrhs_p',
nrhs_p)
[
ferr,
berr,
info] = nag_lapack_ztprfs(
uplo,
trans,
diag,
ap,
b,
x, 'n',
n, 'nrhs_p',
nrhs_p)
Description
nag_lapack_ztprfs (f07uv) returns the backward errors and estimated bounds on the forward errors for the solution of a complex triangular system of linear equations with multiple right-hand sides , or , using packed storage. The function handles each right-hand side vector (stored as a column of the matrix ) independently, so we describe the function of nag_lapack_ztprfs (f07uv) 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 .
- The equations are of the form .
- 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:
– complex array
-
The dimension of the array
ap
must be at least
The
by
triangular matrix
, packed by columns.
More precisely,
- if , the upper triangle of must be stored with element in for ;
- if , the lower triangle of must be stored with element in for .
If , the diagonal elements of are assumed to be , and are not referenced; the same storage scheme is used whether or ‘U’.
- 5:
– complex 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:
– complex 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_ztptrs (f07us).
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the arrays
b,
x.
, 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_ztprfs (f07uv), for each right-hand side, involves solving a number of systems of linear equations of the form or ; the number is usually and never more than . Each solution involves approximately real floating-point operations.
The real analogue of this function is
nag_lapack_dtprfs (f07uh).
Example
This example solves the system of equations
and to compute forward and backward error bounds, where
and
using packed storage for
.
Open in the MATLAB editor:
f07uv_example
function f07uv_example
fprintf('f07uv example results\n\n');
ap = [ 4.78 + 4.56i; 2.00 - 0.30i; 2.89 - 1.34i; -1.89 + 1.15i;
-4.11 + 1.25i; 2.36 - 4.25i; 0.04 - 3.69i;
4.15 + 0.80i; -0.02 + 0.46i;
0.33 - 0.26i];
b = [-14.78 - 32.36i, -18.02 + 28.46i;
2.98 - 2.14i, 14.22 + 15.42i;
-20.96 + 17.06i, 5.62 + 35.89i;
9.54 + 9.91i, -16.46 - 1.73i];
uplo = 'L';
trans = 'N';
diag = 'N';
[x, info] = f07us( ...
uplo, trans, diag, ap, b);
[ferr, berr, info] = f07uv( ...
uplo, trans, diag, ap, b, x);
disp('Solution(s)');
disp(x);
fprintf('Backward errors (machine-dependent)\n ')
fprintf('%11.1e', berr);
fprintf('\nEstimated forward error bounds (machine-dependent)\n ')
fprintf('%11.1e', ferr);
fprintf('\n');
f07uv example results
Solution(s)
-5.0000 - 2.0000i 1.0000 + 5.0000i
-3.0000 - 1.0000i -2.0000 - 2.0000i
2.0000 + 1.0000i 3.0000 + 4.0000i
4.0000 + 3.0000i 4.0000 - 3.0000i
Backward errors (machine-dependent)
6.2e-17 3.5e-17
Estimated forward error bounds (machine-dependent)
3.0e-14 3.2e-14
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015