F11XNF (PDF version)
F11 Chapter Contents
F11 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F11XNF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

F11XNF computes a matrix-vector or conjugate transposed matrix-vector product involving a complex sparse non-Hermitian matrix stored in coordinate storage format.

2  Specification

SUBROUTINE F11XNF ( TRANS, N, NNZ, A, IROW, ICOL, CHECK, X, Y, IFAIL)
INTEGER  N, NNZ, IROW(NNZ), ICOL(NNZ), IFAIL
COMPLEX (KIND=nag_wp)  A(NNZ), X(N), Y(N)
CHARACTER(1)  TRANS, CHECK

3  Description

F11XNF computes either the matrix-vector product y=Ax, or the conjugate transposed matrix-vector product y=AHx, according to the value of the argument TRANS, where A is a complex n by n sparse non-Hermitian matrix, of arbitrary sparsity pattern. The matrix A is stored in coordinate storage (CS) format (see Section 2.1.1 in the F11 Chapter Introduction). The array A stores all the nonzero elements of A, while arrays IROW and ICOL store the corresponding row and column indices respectively.
It is envisaged that a common use of F11XNF will be to compute the matrix-vector product required in the application of F11BSF to sparse complex linear systems. This is illustrated in Section 9 in F11DRF.

4  References

None.

5  Parameters

1:     TRANS – CHARACTER(1)Input
On entry: specifies whether or not the matrix A is conjugate transposed.
TRANS='N'
y=Ax is computed.
TRANS='T'
y=AHx is computed.
Constraint: TRANS='N' or 'T'.
2:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N1.
3:     NNZ – INTEGERInput
On entry: the number of nonzero elements in the matrix A.
Constraint: 1NNZN2.
4:     A(NNZ) – COMPLEX (KIND=nag_wp) arrayInput
On entry: the nonzero elements in 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 routine F11ZNF may be used to order the elements in this way.
5:     IROW(NNZ) – INTEGER arrayInput
6:     ICOL(NNZ) – INTEGER arrayInput
On entry: the row and column indices of the nonzero elements supplied in array A.
Constraints:
  • 1IROWiN and 1ICOLiN, for i=1,2,,NNZ;
  • IROWi-1<IROWi or IROWi-1=IROWi and ICOLi-1<ICOLi, for i=2,3,,NNZ.
7:     CHECK – CHARACTER(1)Input
On entry: specifies whether or not the CS representation of the matrix A, values of N, NNZ, IROW and ICOL should be checked.
CHECK='C'
Checks are carried on the values of N, NNZ, IROW and ICOL.
CHECK='N'
None of these checks are carried out.
See also Section 8.2.
Constraint: CHECK='C' or 'N'.
8:     X(N) – COMPLEX (KIND=nag_wp) arrayInput
On entry: the vector x.
9:     Y(N) – COMPLEX (KIND=nag_wp) arrayOutput
On exit: the vector y.
10:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,TRANS'N' or 'T',
orCHECK'C' or 'N'.
IFAIL=2
On entry,N<1,
orNNZ<1,
orNNZ>N2.
IFAIL=3
On entry, the arrays IROW and ICOL fail to satisfy the following constraints:
  • 1IROWiN and 1ICOLiN, for i=1,2,,NNZ;
  • IROWi-1<IROWi, or IROWi-1=IROWi and ICOLi-1<ICOLi, for i=2,3,,NNZ.
Therefore a nonzero element has been supplied which does not lie within the matrix A, is out of order, or has duplicate row and column indices. Call F11ZNF to reorder and sum or remove duplicates.

7  Accuracy

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

8  Further Comments

8.1  Timing

The time taken for a call to F11XNF is proportional to NNZ.

8.2  Use of CHECK

It is expected that a common use of F11XNF will be to compute the matrix-vector product required in the application of F11BSF to sparse complex linear systems. In this situation F11XNF is likely to be called many times with the same matrix A. In the interests of both reliability and efficiency you are recommended to set CHECK='C' for the first of such calls, and to set CHECK='N' for all subsequent calls.

9  Example

This example reads in a complex sparse matrix A and a vector x. It then calls F11XNF to compute the matrix-vector product y=Ax and the conjugate transposed matrix-vector product y=AHx.

9.1  Program Text

Program Text (f11xnfe.f90)

9.2  Program Data

Program Data (f11xnfe.d)

9.3  Program Results

Program Results (f11xnfe.r)


F11XNF (PDF version)
F11 Chapter Contents
F11 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012