hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_sparse_complex_herm_matvec (f11xs)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_sparse_complex_herm_matvec (f11xs) computes a matrix-vector product involving a complex sparse Hermitian matrix stored in symmetric coordinate storage format.

Syntax

[y, ifail] = f11xs(a, irow, icol, check, x, 'n', n, 'nz', nz)
[y, ifail] = nag_sparse_complex_herm_matvec(a, irow, icol, check, x, 'n', n, 'nz', nz)

Description

nag_sparse_complex_herm_matvec (f11xs) computes the matrix-vector product
y=Ax  
where A is an n by n complex Hermitian sparse matrix, of arbitrary sparsity pattern, stored in symmetric coordinate storage (SCS) format (see Symmetric coordinate storage (SCS) format in the F11 Chapter Introduction). The array a stores all the nonzero elements in the lower triangular part of A, while arrays irow and icol store the corresponding row and column indices respectively.

References

None.

Parameters

Compulsory Input Parameters

1:     anz – complex array
The nonzero elements in the lower triangular part of the matrix A, 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:     irownz int64int32nag_int array
3:     icolnz 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)):
  • 1irowin and 1icoliirowi, for i=1,2,,nz;
  • irowi-1<irowi or irowi-1=irowi and icoli-1<icoli, for i=2,3,,nz.
4:     check – string (length ≥ 1)
Specifies whether or not the SCS representation of the matrix A, values of n, nz, irow and icol should be checked.
check='C'
Checks are carried out on the values of n, nz, irow and icol.
check='N'
None of these checks are carried out.
Constraint: check='C' or 'N'.
5:     xn – complex array
The vector x.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the dimension of the array x.
n, the order of the matrix A.
Constraint: n1.
2:     nz 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 A.
Constraint: 1nzn×n+1/2.

Output Parameters

1:     yn – complex array
The vector y.
2:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   ifail=1
On entry,check'C' or 'N'.
   ifail=2
On entry,n<1,
ornz<1,
ornz>n×n+1/2.
   ifail=3
On entry, the arrays irow and icol fail to satisfy the following constraints:
  • 1irowin and 1icoliirowi, for i=1,2,,nz;
  • irowi-1<irowi or irowi-1=irowi and icoli-1<icoli, for i=2,3,,nz.
Therefore a nonzero element has been supplied which does not lie in the lower triangular part of A, 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.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

The computed vector y satisfies the error bound
y-AxcnεAx,  
where cn is a modest linear function of n, and ε is the machine precision.

Further Comments

Timing

The time taken for a call to nag_sparse_complex_herm_matvec (f11xs) is proportional to nz.

Example

This example reads in a complex sparse Hermitian positive definite matrix A and a vector x. It then calls nag_sparse_complex_herm_matvec (f11xs) to compute the matrix-vector product y=Ax.
function f11xs_example


fprintf('f11xs example results\n\n');

% Sparse Hermitian matrix product y = Ax
a = [6 ...
    -1 + 1i  6 + 0i ...
             0 + 1i 5 + 0i  ...
                            5 + 0i ...
     2 - 2i                        4 + 0i  ...
                    1 + 1i  2 + 0i         6 + 0i ...
            -4 + 3i                0 + 1i -1 + 0i 6 + 0i ...
                           -1 - 1i         0 - 1i        9 + 0i ...
     1 + 3i                        1 + 2i -1 + 0i        1 + 4i 9 + 0i];
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];

x = [ 1 + 9i;      2 - 8i;      3 + 7i;
      4 - 6i;      5 + 5i;      6 - 4i;
      7 + 3i;      8 - 2i;      9 + 1i];

check = 'C';
[y, ifail] = f11xs( ...
                    a, irow, icol, check, x);

disp('Matrix-vector product');
disp(y);


f11xs example results

Matrix-vector product
   8.0000 +54.0000i
 -10.0000 -92.0000i
  25.0000 +27.0000i
  26.0000 -28.0000i
  54.0000 +12.0000i
  26.0000 -22.0000i
  47.0000 +65.0000i
  71.0000 -57.0000i
  60.0000 +70.0000i


PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015