PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dsysvx (f07mb)
Purpose
nag_lapack_dsysvx (f07mb) uses the diagonal pivoting factorization to compute the solution to a real system of linear equations
where
is an
by
symmetric matrix and
and
are
by
matrices. Error bounds on the solution and a condition estimate are also provided.
Syntax
[
af,
ipiv,
x,
rcond,
ferr,
berr,
info] = f07mb(
fact,
uplo,
a,
af,
ipiv,
b, 'n',
n, 'nrhs_p',
nrhs_p)
[
af,
ipiv,
x,
rcond,
ferr,
berr,
info] = nag_lapack_dsysvx(
fact,
uplo,
a,
af,
ipiv,
b, 'n',
n, 'nrhs_p',
nrhs_p)
Description
nag_lapack_dsysvx (f07mb) performs the following steps:
1. |
If , the diagonal pivoting method is used to factor . The form of the factorization is if or if , where (or ) is a product of permutation and unit upper (lower) triangular matrices, and is symmetric and block diagonal with by and by diagonal blocks. |
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.
- af and ipiv contain the factorized form of the matrix . af and ipiv will not be modified.
- The matrix will be copied to af and factorized.
Constraint:
or .
- 2:
– string (length ≥ 1)
-
If
, the upper triangle of
is stored.
If , the lower triangle of is stored.
Constraint:
or .
- 3:
– 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
symmetric matrix
.
- If , the upper triangular part of must be stored and the elements of the array below the diagonal are not referenced.
- If , the lower triangular part of must be stored and the elements of the array above the diagonal are not referenced.
- 4:
– double array
-
The first dimension of the array
af must be at least
.
The second dimension of the array
af must be at least
.
If
,
af contains the block diagonal matrix
and the multipliers used to obtain the factor
or
from the factorization
or
as computed by
nag_lapack_dsytrf (f07md).
- 5:
– int64int32nag_int array
-
The dimension of the array
ipiv
must be at least
If
,
ipiv contains details of the interchanges and the block structure of
, as determined by
nag_lapack_dsytrf (f07md).
- if , is a by pivot block and the th row and column of were interchanged with the th row and column;
- if and , is a by pivot block and the th row and column of were interchanged with the th row and column;
- if and , is a by pivot block and the th row and column of were interchanged with the th row and column.
- 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 first dimension of the arrays
a,
af,
b and the second dimension of the arrays
a,
af,
ipiv.
, 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:
– double array
-
The first dimension of the array
af will be
.
The second dimension of the array
af will be
.
If
,
af returns the block diagonal matrix
and the multipliers used to obtain the factor
or
from the factorization
or
.
- 2:
– int64int32nag_int array
-
The dimension of the array
ipiv will be
If
,
ipiv contains details of the interchanges and the block structure of
, as determined by
nag_lapack_dsytrf (f07md), as described above.
- 3:
– 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 .
- 4:
– 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
.
- 5:
– double array
-
The dimension of the array
ferr will be
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.
- 6:
– double array
-
The dimension of the array
berr will be
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).
- 7:
– 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 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
where
is the
machine precision. See Chapter 11 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 factorization of requires approximately floating-point operations.
For each right-hand side, computation of the backward error involves a minimum of floating-point operations. Each step of iterative refinement involves an additional operations. At most five steps of iterative refinement are performed, but usually only one or two steps are required. Estimating the forward error involves solving a number of systems of equations of the form ; the number is usually or and never more than . Each solution involves approximately operations.
The complex analogues of this function are
nag_lapack_zhesvx (f07mp) for Hermitian matrices, and
nag_lapack_zsysvx (f07np) for symmetric matrices.
Example
This example solves the equations
where
is the symmetric matrix
Error estimates for the solutions, and an estimate of the reciprocal of the condition number of the matrix are also output.
Open in the MATLAB editor:
f07mb_example
function f07mb_example
fprintf('f07mb example results\n\n');
uplo = 'Upper';
a = [-1.81, 2.06, 0.63, -1.15;
0, 1.15, 1.87, 4.20;
0, 0, -0.21, 3.87;
0, 0, 0, 2.07];
b = [0.96, 3.93;
6.07, 19.25;
8.38, 9.90;
9.50, 27.85];
fact = 'Not factored';
af = a;
ipiv = zeros(size(b,1),1,'int64');
[af, ipiv, x, rcond, ferr, berr, info] = ...
f07mb( ...
fact, uplo, a, af, 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\n',rcond);
f07mb example results
Solution(s)
-5.0000 2.0000
-2.0000 3.0000
1.0000 4.0000
4.0000 1.0000
Backward errors (machine-dependent)
0.0e+00 4.1e-17
Estimated forward error bounds (machine-dependent)
2.2e-14 3.2e-14
Estimate of reciprocal condition number
1.3e-02
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015