PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zspsvx (f07qp)
Purpose
nag_lapack_zspsvx (f07qp) uses the diagonal pivoting factorization
to compute the solution to a complex system of linear equations
where
is an
by
symmetric matrix stored in packed format and
and
are
by
matrices. Error bounds on the solution and a condition estimate are also provided.
Syntax
[
afp,
ipiv,
x,
rcond,
ferr,
berr,
info] = f07qp(
fact,
uplo,
ap,
afp,
ipiv,
b, 'n',
n, 'nrhs_p',
nrhs_p)
[
afp,
ipiv,
x,
rcond,
ferr,
berr,
info] = nag_lapack_zspsvx(
fact,
uplo,
ap,
afp,
ipiv,
b, 'n',
n, 'nrhs_p',
nrhs_p)
Description
nag_lapack_zspsvx (f07qp) performs the following steps:
1. |
If , the diagonal pivoting method is used to factor as 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.
- afp and ipiv contain the factorized form of the matrix . afp and ipiv will not be modified.
- The matrix will be copied to afp 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:
– complex array
-
The dimension of the array
ap
must be at least
The
by
symmetric 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 .
- 4:
– complex array
-
The dimension of the array
afp
must be at least
If
,
afp contains the block diagonal matrix
and the multipliers used to obtain the factor
or
from the factorization
or
as computed by
nag_lapack_zsptrf (f07qr), stored as a packed triangular matrix in the same storage format as
.
- 5:
– int64int32nag_int array
-
If
,
ipiv contains details of the interchanges and the block structure of
, as determined by
nag_lapack_zsptrf (f07qr).
- 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:
– 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 .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
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:
– complex array
-
The dimension of the array
afp will be
If
,
afp contains the block diagonal matrix
and the multipliers used to obtain the factor
or
from the factorization
or
as computed by
nag_lapack_zsptrf (f07qr), stored as a packed triangular matrix in the same storage format as
.
- 2:
– int64int32nag_int array
-
If
,
ipiv contains details of the interchanges and the block structure of
, as determined by
nag_lapack_zsptrf (f07qr), as described above.
- 3:
– complex 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
-
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
-
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 real analogue of this function is
nag_lapack_dspsvx (f07pb). The complex Hermitian analogue of this function is
nag_lapack_zhpsvx (f07pp).
Example
This example solves the equations
where
is the complex symmetric matrix
and
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:
f07qp_example
function f07qp_example
fprintf('f07qp example results\n\n');
uplo = 'U';
n = int64(4);
ap = [-0.56 + 0.12i;
-1.54 - 2.86i; -2.83 - 0.03i;
5.32 - 1.59i; -3.52 + 0.58i; 8.86 + 1.81i;
3.80 + 0.92i; -7.86 - 2.96i; 5.14 - 0.64i; -0.39 - 0.71i];
b = [ -6.43 + 19.24i, -4.59 - 35.53i;
-0.49 - 1.47i, 6.95 + 20.49i;
-48.18 + 66.00i, -12.08 - 27.02i;
-55.64 + 41.22i, -19.09 - 35.97i];
fact = 'Not factored';
afp = ap;
ipiv = zeros(n,1,'int64');
[afp, ipiv, x, rcond, ferr, berr, info] = ...
f07qp(...
fact, uplo, ap, afp, ipiv, b);
disp('Solution');
disp(x);
fprintf('Condition number = %9.2e\n',1/rcond);
fprintf('Forward error bounds = %10.1e %10.1e\n',ferr);
fprintf('Backward error bounds = %10.1e %10.1e\n',berr);
f07qp example results
Solution
-4.0000 + 3.0000i -1.0000 + 1.0000i
3.0000 - 2.0000i 3.0000 + 2.0000i
-2.0000 + 5.0000i 1.0000 - 3.0000i
1.0000 - 1.0000i -2.0000 - 1.0000i
Condition number = 2.06e+01
Forward error bounds = 1.1e-14 1.2e-14
Backward error bounds = 3.0e-17 4.9e-17
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015