PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zppsvx (f07gp)
Purpose
nag_lapack_zppsvx (f07gp) uses the Cholesky factorization
to compute the solution to a complex system of linear equations
where
is an
by
Hermitian positive definite matrix stored in packed format and
and
are
by
matrices. Error bounds on the solution and a condition estimate are also provided.
Syntax
[
ap,
afp,
equed,
s,
b,
x,
rcond,
ferr,
berr,
info] = f07gp(
fact,
uplo,
ap,
afp,
equed,
s,
b, 'n',
n, 'nrhs_p',
nrhs_p)
[
ap,
afp,
equed,
s,
b,
x,
rcond,
ferr,
berr,
info] = nag_lapack_zppsvx(
fact,
uplo,
ap,
afp,
equed,
s,
b, 'n',
n, 'nrhs_p',
nrhs_p)
Description
nag_lapack_zppsvx (f07gp) performs the following steps:
1. |
If , real diagonal scaling factors, , are computed to equilibrate the system:
Whether or not the system will be equilibrated depends on the scaling of the matrix , but if equilibration is used, is overwritten by and by . |
2. |
If or , the Cholesky decomposition is used to factor the matrix (after equilibration if ) as if or if , where is an upper triangular matrix and is a lower triangular matrix. |
3. |
If the leading by principal minor of is not positive definite, 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. |
4. |
The system of equations is solved for using the factored form of . |
5. |
Iterative refinement is applied to improve the computed solution matrix and to calculate error bounds and backward error estimates for it. |
6. |
If equilibration was used, the matrix is premultiplied by so that it solves the original system before equilibration. |
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
is supplied on entry, and if not, whether the matrix
should be equilibrated before it is factorized.
- afp contains the factorized form of . If , the matrix has been equilibrated with scaling factors given by s. ap and afp will not be modified.
- The matrix will be copied to afp and factorized.
- The matrix will be equilibrated if necessary, then 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
If
and
,
ap must contain the equilibrated matrix
; otherwise,
ap must contain the
by
Hermitian 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 triangular factor
or
from the Cholesky factorization
or
, in the same storage format as
ap. If
,
afp is the factorized form of the equilibrated matrix
.
- 5:
– string (length ≥ 1)
-
If
or
,
equed need not be set.
If
,
equed must specify the form of the equilibration that was performed as follows:
- if , no equilibration;
- if , equilibration was performed, i.e., has been replaced by .
Constraint:
if , or .
- 6:
– double array
-
The dimension of the array
s
must be at least
If
or
,
s need not be set.
If
and
,
s must contain the scale factors,
, for
; each element of
s must be positive.
- 7:
– 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 first dimension of the array
b and the dimension of the array
s.
, 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
ap will be
If
or
, or if
and
,
ap is not modified.
If
and
,
ap stores
.
- 2:
– complex array
-
The dimension of the array
afp will be
If
or if
and
,
afp returns the triangular factor
or
from the Cholesky factorization
or
of the original matrix
.
If
and
,
afp returns the triangular factor
or
from the Cholesky factorization
or
of the equilibrated matrix
(see the description of
ap for the form of the equilibrated matrix).
- 3:
– string (length ≥ 1)
-
If
,
equed is unchanged from entry.
Otherwise, if no constraints are violated,
equed specifies the form of the equilibration that was performed as specified above.
- 4:
– double array
-
The dimension of the array
s will be
If
,
s is unchanged from entry.
Otherwise, if no constraints are violated and
,
s contains the scale factors,
, for
; each element of
s is positive.
- 5:
– complex array
-
The first dimension of the array
b will be
.
The second dimension of the array
b will be
.
If
,
b is not modified.
If
,
b stores
.
- 6:
– 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 to the original system of equations. Note that the arrays and are modified on exit if , and the solution to the equilibrated system is .
- 7:
– double scalar
-
If no constraints are violated, an estimate of the reciprocal condition number of the matrix (after equilibration if that is performed), computed as .
- 8:
– 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.
- 9:
– 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).
- 10:
– 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.
-
-
The leading minor of order of is not positive
definite, so the factorization could not be completed, and the solution has
not been computed. is returned.
- W
-
(or
) 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
- if , ;
- if , ,
is a modest linear function of
, and
is the
machine precision. See Section 10.1 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_dppsvx (f07gb).
Example
This example solves the equations
where
is the Hermitian positive definite matrix
and
Error estimates for the solutions, information on equilibration and an estimate of the reciprocal of the condition number of the scaled matrix are also output.
Open in the MATLAB editor:
f07gp_example
function f07gp_example
fprintf('f07gp example results\n\n');
uplo = 'Upper';
n = int64(4);
ap = [ 3.23 + 0i, ...
1.51 - 1.92i, 3.58 + 0i, ...
1.90 + 0.84i, -0.23 + 1.11i, 4.09 + 0i, ...
0.42 + 2.50i, -1.18 + 1.37i, 2.33 - 0.14i, 4.29 + 0i];
b = [ 3.93 - 6.14i, 1.48 + 6.58i;
6.17 + 9.42i, 4.65 - 4.75i;
-7.17 - 21.83i, -4.91 + 2.29i;
1.99 - 14.38i, 7.64 - 10.79i];
fact = 'Equilibration';
afp = complex(zeros(10,1));
equed = ' ';
s = zeros(n,1);
[ap, afp, equed, s, b, x, rcond, ferr, berr, info] = ...
f07gp( ...
fact, uplo, ap, afp, equed, s, 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);
if equed=='N'
fprintf('A has not been equilibrated\n');
else
fprintf('A has been equilibrated\n');
end
f07gp example results
Solution(s)
1.0000 - 1.0000i -1.0000 + 2.0000i
-0.0000 + 3.0000i 3.0000 - 4.0000i
-4.0000 - 5.0000i -2.0000 + 3.0000i
2.0000 + 1.0000i 4.0000 - 5.0000i
Backward errors (machine-dependent)
8.1e-17 9.9e-17
Estimated forward error bounds (machine-dependent)
6.2e-14 7.5e-14
Estimate of reciprocal condition number
6.6e-03
A has not been equilibrated
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015