PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_sparse_complex_herm_precon_ssor_solve (f11jr)
Purpose
nag_sparse_complex_herm_precon_ssor_solve (f11jr) solves a system of linear equations involving the preconditioning matrix corresponding to SSOR applied to a complex sparse Hermitian matrix, represented in symmetric coordinate storage format.
Syntax
[
x,
ifail] = f11jr(
a,
irow,
icol,
rdiag,
omega,
check,
y, 'n',
n, 'nz',
nz)
[
x,
ifail] = nag_sparse_complex_herm_precon_ssor_solve(
a,
irow,
icol,
rdiag,
omega,
check,
y, 'n',
n, 'nz',
nz)
Description
nag_sparse_complex_herm_precon_ssor_solve (f11jr) solves a system of equations
involving the preconditioning matrix
corresponding to symmetric successive-over-relaxation (SSOR) (see
Young (1971)) on a linear system
, where
is a sparse complex Hermitian matrix stored in symmetric coordinate storage (SCS) format (see
Symmetric coordinate storage (SCS) format in the F11 Chapter Introduction).
In the definition of given above is the diagonal part of , is the strictly lower triangular part of and is a user-defined relaxation parameter. Note that since is Hermitian the matrix is necessarily real.
References
Young D (1971) Iterative Solution of Large Linear Systems Academic Press, New York
Parameters
Compulsory Input Parameters
- 1:
– complex array
-
The nonzero elements in 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.
- 2:
– int64int32nag_int array
- 3:
– int64int32nag_int array
-
The row and column indices of the nonzero elements supplied in array
a.
Constraints:
irow and
icol must satisfy the following constraints (which may be imposed by a call to
nag_sparse_complex_herm_sort (f11zp)):
- and , for ;
- or and , for .
- 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:
– double scalar
-
The relaxation parameter .
Constraint:
.
- 6:
– string (length ≥ 1)
-
Specifies whether or not the input data should be checked.
- Checks are carried out on the values of n, nz, irow, icol and omega.
- None of these checks are carried out.
Constraint:
or .
- 7:
– complex array
-
The right-hand side vector .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
rdiag,
y. (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
-
The solution vector .
- 2:
– 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 . |
-
-
On entry, | , |
or | , |
or | , |
or | omega lies outside the interval . |
-
-
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, | a row of has no diagonal entry. |
-
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
The computed solution
is the exact solution of a perturbed system of equations
, where
is a modest linear function of
, and
is the
machine precision.
Further Comments
Timing
The time taken for a call to
nag_sparse_complex_herm_precon_ssor_solve (f11jr) is proportional to
nz.
Example
This example program solves the preconditioning equation for a by sparse complex Hermitian matrix , given in symmetric coordinate storage (SCS) format.
Open in the MATLAB editor:
f11jr_example
function f11jr_example
fprintf('f11jr example results\n\n');
nz = int64(23);
n = int64(9);
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];
y = [ 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]);
rdiag = zeros(n, 1);
for i=1:nz
if irow(i) == icol(i)
rdiag(irow(i)) = 1/real(a(i));
end
end
omega = 1.1;
check = 'C';
[x, ifail] = f11jr( ...
a, irow, icol, rdiag, omega, check, y);
disp('Solution of Mx = y');
disp(x);
f11jr example results
Solution of Mx = y
1.0977 + 5.9139i
0.2230 -14.0850i
2.2315 + 7.0868i
4.8164 - 6.1807i
6.7632 + 1.5690i
3.3531 - 4.7849i
0.6699 - 1.4646i
8.8315 - 3.6326i
4.7685 + 0.1213i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015