PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zcgesv (f07aq)
Purpose
nag_lapack_zcgesv (f07aq) computes the solution to a complex system of linear equations
where
is an
by
matrix and
and
are
by
matrices.
Syntax
Description
nag_lapack_zcgesv (f07aq) first attempts to factorize the matrix in single precision and use this factorization within an iterative refinement procedure to produce a solution with double precision accuracy. If the approach fails the method switches to a double precision factorization and solve.
The iterative refinement process is stopped if
where
iter is the number of iterations carried out thus far and
is the maximum number of iterations allowed, which is fixed at
iterations. The process is also stopped if for all right-hand sides we have
where
is the
-norm of the residual,
is the
-norm of the solution,
is the
-operator-norm of the matrix
and
is the
machine precision returned by
nag_machine_precision (x02aj).
The iterative refinement strategy used by
nag_lapack_zcgesv (f07aq) can be more efficient than the corresponding direct full precision algorithm. Since this strategy must perform iterative refinement on each right-hand side, any efficiency gains will reduce as the number of right-hand sides increases. Conversely, as the matrix size increases the cost of these iterative refinements become less significant relative to the cost of factorization. Thus, any efficiency gains will be greatest for a very small number of right-hand sides and for large matrix sizes. The cut-off values for the number of right-hand sides and matrix size, for which the iterative refinement strategy performs better, depends on the relative performance of the reduced and full precision factorization and back-substitution. For now,
nag_lapack_zcgesv (f07aq) always attempts the iterative refinement strategy first; you are advised to compare the performance of
nag_lapack_zcgesv (f07aq) with that of its full precision counterpart
nag_lapack_zgesv (f07an) to determine whether this strategy is worthwhile for your particular problem dimensions.
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
Buttari A, Dongarra J, Langou J, Langou J, Luszczek P and Kurzak J (2007) Mixed precision iterative refinement techniques for the solution of dense linear systems International Journal of High Performance Computing Applications
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– complex 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 coefficient matrix .
- 2:
– 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 second dimension of the array
a. (An error is raised if these dimensions are not equal.)
, 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 first dimension of the array
a will be
.
The second dimension of the array
a will be
.
If iterative refinement has been successfully used (i.e., if and ), then is unchanged. If double precision factorization has been used (when and ), contains the factors and from the factorization ; the unit diagonal elements of are not stored.
- 2:
– int64int32nag_int array
-
If no constraints are violated, the pivot indices that define the permutation matrix ; at the th step row of the matrix was interchanged with row . indicates a row interchange was not required. corresponds either to the single precision factorization (if and ) or to the double precision factorization (if and ).
- 3:
– complex array
-
The first dimension of the array
x will be
.
The second dimension of the array
x will be
.
If , the by solution matrix .
- 4:
– int64int32nag_int scalar
-
If
, iterative refinement has been successfully used and
iter is the number of iterations carried out.
If , iterative refinement has failed for one of the reasons given below and double precision factorization has been carried out instead.
- Taking into account machine parameters, and the values of n and nrhs_p, it is not worth working in single precision.
- Overflow of an entry occurred when moving from double to single precision.
- An intermediate single precision factorization failed.
- The maximum permitted number of iterations was exceeded.
- 5:
– 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 could not be computed.
Accuracy
The computed solution for a single right-hand side,
, satisfies the equation of the form
where
and
is the
machine precision. An approximate error bound for the computed solution is given by
where
, the condition number of
with respect to the solution of the linear equations. See Section 4.4 of
Anderson et al. (1999) for further details.
Further Comments
The real analogue of this function is
nag_lapack_dsgesv (f07ac).
Example
This example solves the equations
where
is the general matrix
Open in the MATLAB editor:
f07aq_example
function f07aq_example
fprintf('f07aq example results\n\n');
a = [ -1.34 + 2.55i, 0.28 + 3.17i, -6.39 - 2.20i, 0.72 - 0.92i;
-0.17 - 1.41i, 3.31 - 0.15i, -0.15 + 1.34i, 1.29 + 1.38i;
-3.29 - 2.39i, -1.91 + 4.42i, -0.14 - 1.35i, 1.72 + 1.35i;
2.41 + 0.39i, -0.56 + 1.47i, -0.83 - 0.69i, -1.96 + 0.67i];
b = [ 26.26 + 51.78i;
6.43 - 8.68i;
-5.75 + 25.31i;
1.16 + 2.57i];
[a, ipiv, x, iter, info] = f07aq(a, b);
disp('Solution');
disp(x');
disp('Pivot indices');
disp(double(ipiv'));
f07aq example results
Solution
1.0000 - 1.0000i 2.0000 + 3.0000i -4.0000 + 5.0000i 0.0000 - 6.0000i
Pivot indices
3 2 3 4
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015