PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_sparse_complex_herm_solve_jacssor (f11js)
Purpose
nag_sparse_complex_herm_solve_jacssor (f11js) solves a complex sparse Hermitian system of linear equations, represented in symmetric coordinate storage format, using a conjugate gradient or Lanczos method, without preconditioning, with Jacobi or with SSOR preconditioning.
Syntax
[
x,
rnorm,
itn,
rdiag,
ifail] = f11js(
method,
precon,
a,
irow,
icol,
omega,
b,
tol,
maxitn,
x, 'n',
n, 'nz',
nz)
[
x,
rnorm,
itn,
rdiag,
ifail] = nag_sparse_complex_herm_solve_jacssor(
method,
precon,
a,
irow,
icol,
omega,
b,
tol,
maxitn,
x, 'n',
n, 'nz',
nz)
Description
nag_sparse_complex_herm_solve_jacssor (f11js) solves a complex sparse Hermitian linear system of equations
using a preconditioned conjugate gradient method (see
Barrett et al. (1994)), or a preconditioned Lanczos method based on the algorithm SYMMLQ (see
Paige and Saunders (1975)). The conjugate gradient method is more efficient if
is positive definite, but may fail to converge for indefinite matrices. In this case the Lanczos method should be used instead. For further details see
Barrett et al. (1994).
nag_sparse_complex_herm_solve_jacssor (f11js) allows the following choices for the preconditioner:
- – no preconditioning;
- – Jacobi preconditioning (see Young (1971));
- – symmetric successive-over-relaxation (SSOR) preconditioning (see Young (1971)).
For incomplete Cholesky (IC) preconditioning see
nag_sparse_complex_herm_solve_ilu (f11jq).
The matrix
is represented in symmetric coordinate storage (SCS) format (see
Symmetric coordinate storage (SCS) format in the F11 Chapter Introduction) in the arrays
a,
irow and
icol. The array
a holds the nonzero entries in the lower triangular part of the matrix, while
irow and
icol hold the corresponding row and column indices.
References
Barrett R, Berry M, Chan T F, Demmel J, Donato J, Dongarra J, Eijkhout V, Pozo R, Romine C and Van der Vorst H (1994) Templates for the Solution of Linear Systems: Building Blocks for Iterative Methods SIAM, Philadelphia
Paige C C and Saunders M A (1975) Solution of sparse indefinite systems of linear equations SIAM J. Numer. Anal. 12 617–629
Young D (1971) Iterative Solution of Large Linear Systems Academic Press, New York
Parameters
Compulsory Input Parameters
- 1:
– string
-
Specifies the iterative method to be used.
- Conjugate gradient method.
- Lanczos method (SYMMLQ).
Constraint:
or .
- 2:
– string (length ≥ 1)
-
Specifies the type of preconditioning to be used.
- No preconditioning.
- Jacobi.
- Symmetric successive-over-relaxation (SSOR).
Constraint:
, or .
- 3:
– complex array
-
The nonzero elements of the lower triangular part of the matrix
, ordered by increasing row index, and by increasing column index within each row. Multiple entries for the same row and column indices are not permitted. The function
nag_sparse_complex_herm_sort (f11zp) may be used to order the elements in this way.
- 4:
– int64int32nag_int array
- 5:
– int64int32nag_int array
-
The row and column indices of the nonzero elements supplied in array
a.
Constraints:
irow and
icol must satisfy these constraints (which may be imposed by a call to
nag_sparse_complex_herm_sort (f11zp)):
- and , for ;
- or and , for .
- 6:
– double scalar
-
If
,
omega is the relaxation parameter
to be used in the SSOR method. Otherwise
omega need not be initialized.
Constraint:
.
- 7:
– complex array
-
The right-hand side vector .
- 8:
– double scalar
-
The required tolerance. Let
denote the approximate solution at iteration
, and
the corresponding residual. The algorithm is considered to have converged at iteration
if
If
,
is used, where
is the
machine precision. Otherwise
is used.
Constraint:
.
- 9:
– int64int32nag_int scalar
-
The maximum number of iterations allowed.
Constraint:
.
- 10:
– complex array
-
An initial approximation to the solution vector .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
b,
x. (An error is raised if these dimensions are not equal.)
, the order of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
a,
irow,
icol. (An error is raised if these dimensions are not equal.)
The number of nonzero elements in the lower triangular part of the matrix .
Constraint:
.
Output Parameters
- 1:
– complex array
-
An improved approximation to the solution vector .
- 2:
– double scalar
-
The final value of the residual norm
, where
is the output value of
itn.
- 3:
– int64int32nag_int scalar
-
The number of iterations carried out.
- 4:
– double array
-
The elements of the diagonal matrix , where is the diagonal part of . Note that since is Hermitian the elements of are necessarily real.
- 5:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
On entry, | or , |
or | , or , |
or | , |
or | , |
or | , |
or | omega lies outside the interval , |
or | , |
or | , |
or | lwork is too small. |
-
-
On entry, the arrays
irow and
icol fail to satisfy the following constraints:
- and , for ;
- , or and , for .
Therefore a nonzero element has been supplied which does not lie in the lower triangular part of
, is out of order, or has duplicate row and column indices. Call
nag_sparse_complex_herm_sort (f11zp) to reorder and sum or remove duplicates.
-
-
On entry, the matrix has a zero diagonal element. Jacobi and SSOR preconditioners are not appropriate for this problem.
-
-
The required accuracy could not be obtained. However, a reasonable accuracy has been obtained and further iterations could not improve the result.
-
-
Required accuracy not obtained in
maxitn iterations.
-
-
The preconditioner appears not to be positive definite.
-
-
The matrix of the coefficients appears not to be positive definite (conjugate gradient method only).
-
-
A serious error has occurred in an internal call to an auxiliary function. Check all function calls and array sizes. Seek expert help.
-
-
The matrix of the coefficients has a non-real diagonal entry, and is therefore not Hermitian.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
On successful termination, the final residual
, where
, satisfies the termination criterion
The value of the final residual norm is returned in
rnorm.
Further Comments
The time taken by
nag_sparse_complex_herm_solve_jacssor (f11js) for each iteration is roughly proportional to
nz. One iteration with the Lanczos method (SYMMLQ) requires a slightly larger number of operations than one iteration with the conjugate gradient method.
The number of iterations required to achieve a prescribed accuracy cannot easily be determined a priori, as it can depend dramatically on the conditioning and spectrum of the preconditioned matrix of the coefficients .
Example
This example solves a complex sparse Hermitian positive definite system of equations using the conjugate gradient method, with SSOR preconditioning.
Open in the MATLAB editor:
f11js_example
function f11js_example
fprintf('f11js example results\n\n');
n = int64(9);
nz = int64(23);
a = [ 6 + 0.i; -1 + 1.i; 6 + 0.i; 0 + 1.i;
5 + 0.i; 5 + 0.i; 2 - 2.i; 4 + 0.i;
1 + 1.i; 2 + 0.i; 6 + 0.i; -4 + 3.i;
0 + 1.i; -1 + 0.i; 6 + 0.i; -1 - 1.i;
0 - 1.i; 9 + 0.i; 1 + 3.i; 1 + 2.i;
-1 + 0.i; 1 + 4.i; 9 + 0.i];
b = [ 8 + 54i;-10 - 92i; 25 + 27i; 26 - 28i;
54 + 12i; 26 - 22i; 47 + 65i; 71 - 57i;
60 + 70i];
irow = int64([1;2;2;3;3;4;5;5;6;6;6;7;7;7;7;8;8;8;9;9;9;9;9]);
icol = int64([1;1;2;2;3;4;1;5;3;4;6;2;5;6;7;4;6;8;1;5;6;8;9]);
method = 'CG';
precon = 'S';
omega = 1.1;
tol = 1e-06;
maxitn = int64(100);
x = complex(zeros(n,1));
[x, rnorm, itn, rdiag, ifail] = ...
f11js( ...
method, precon, a, irow, icol, omega, b, tol, maxitn, x);
fprintf('Converged in %d iterations\n', itn);
fprintf('Final redidual norm = %16.3d\n\n', rnorm);
disp('Solution');
disp(x);
f11js example results
Converged in 7 iterations
Final redidual norm = 1.477e-05
Solution
1.0000 + 9.0000i
2.0000 - 8.0000i
3.0000 + 7.0000i
4.0000 - 6.0000i
5.0000 + 5.0000i
6.0000 - 4.0000i
7.0000 + 3.0000i
8.0000 - 2.0000i
9.0000 + 1.0000i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015