NAG Library Routine Document

f11zaf  (real_gen_sort)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

f11zaf sorts the nonzero elements of a real sparse nonsymmetric matrix, represented in coordinate storage format.

2
Specification

Fortran Interface
Subroutine f11zaf ( n, nnz, a, irow, icol, dup, zer, istr, iwork, ifail)
Integer, Intent (In):: n
Integer, Intent (Inout):: nnz, irow(*), icol(*), ifail
Integer, Intent (Out):: istr(n+1), iwork(n)
Real (Kind=nag_wp), Intent (Inout):: a(*)
Character (1), Intent (In):: dup, zer
C Header Interface
#include nagmk26.h
void  f11zaf_ ( const Integer *n, Integer *nnz, double a[], Integer irow[], Integer icol[], const char *dup, const char *zer, Integer istr[], Integer iwork[], Integer *ifail, const Charlen length_dup, const Charlen length_zer)

3
Description

f11zaf takes a coordinate storage (CS) representation (see Section 2.1.1 in the F11 Chapter Introduction) of a real n by n sparse nonsymmetric matrix A, and reorders the nonzero elements by increasing row index and increasing column index within each row. Entries with duplicate row and column indices may be removed, or the values may be summed. Any entries with zero values may optionally be removed.
f11zaf also returns a pointer istr to the starting address of each row in A. This can be used to construct a compressed column storage (CCS) representation of the matrix (see Section 9).

4
References

None.

5
Arguments

1:     n – IntegerInput
On entry: n, the order of the matrix A.
Constraint: n1.
2:     nnz – IntegerInput/Output
On entry: the number of nonzero elements in the matrix A.
Constraint: nnz0.
On exit: the number of nonzero elements with unique row and column indices.
3:     a* – Real (Kind=nag_wp) arrayInput/Output
Note: the dimension of the array a must be at least max1,nnz.
On entry: the nonzero elements of the matrix A. These may be in any order and there may be multiple nonzero elements with the same row and column indices.
On exit: the nonzero elements ordered by increasing row index, and by increasing column index within each row. Each nonzero element has a unique row and column index.
4:     irow* – Integer arrayInput/Output
Note: the dimension of the array irow must be at least max1,nnz.
On entry: the row indices corresponding to the nonzero elements supplied in the array a.
Constraint: 1irowin, for i=1,2,,nnz.
On exit: the first nnz elements contain the row indices corresponding to the nonzero elements returned in the array a.
5:     icol* – Integer arrayInput/Output
Note: the dimension of the array icol must be at least max1,nnz.
On entry: the column indices corresponding to the nonzero elements supplied in the array a.
Constraint: 1icolin, for i=1,2,,nnz.
On exit: the first nnz elements contain the row indices corresponding to the nonzero elements returned in the array a.
6:     dup – Character(1)Input
On entry: indicates how any nonzero elements with duplicate row and column indices are to be treated.
dup='R'
The entries are removed.
dup='S'
The relevant values in a are summed.
dup='F'
The routine fails on detecting a duplicate, with ifail=3.
Constraint: dup='R', 'S' or 'F'.
7:     zer – Character(1)Input
On entry: indicates how any elements with zero values in a are to be treated.
zer='R'
The entries are removed.
zer='K'
The entries are kept.
zer='F'
The routine fails on detecting a zero, with ifail=4.
Constraint: zer='R', 'K' or 'F'.
8:     istrn+1 – Integer arrayOutput
On exit: istri, for i=1,2,,n, is the starting address in the arrays a, irow and icol of row i of the matrix A. istrn+1 is the address of the last nonzero element in A plus one.
9:     iworkn – Integer arrayWorkspace
10:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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,n<1,
ornnz<0,
ordup'R','S', or 'F',
orzer'R','K', or 'F'.
ifail=2
On entry, a nonzero element has been supplied which does not lie within the matrix A, i.e., one or more of the following constraints has been violated:
  • 1irowin,
  • 1icolin,
for i=1,2,,nnz.
ifail=3
On entry, dup='F' and nonzero elements have been supplied which have duplicate row and column indices.
ifail=4
On entry, zer='F' and at least one matrix element has been supplied with a zero coefficient value.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

Not applicable.

8
Parallelism and Performance

f11zaf is not threaded in any implementation.

9
Further Comments

The time taken for a call to f11zaf is proportional to nnz.
Note that the resulting matrix may have either rows or columns with no entries. If row i has no entries then istri=istri+1.
It is also possible to use this routine to convert between coordinate storage (CS) and compressed column storage (CCS) formats. To achieve this the CS storage format arrays irow and icol must be interchanged in the call to f11zaf. On exit from f11zaf, the CCS representation of the matrix is then defined by arrays a, irow and istr. This is illustrated in Section 10.

10
Example

This example reads the CS representation of a real sparse matrix A, calls f11zaf to reorder the nonzero elements, and outputs the original and the reordered representations. It then calls f11zaf again with the alternative ordering, creating a CCS representation which is then passed to a routine that computes a matrix norm for that representation.
A= 2.00 1.00 0 0 0 0 0 1.00 -1.00 0 4.00 0 1.00 0 1.00 0 0 0 1.00 2.00 0 -2.00 0 0 3.00 .  

10.1
Program Text

Program Text (f11zafe.f90)

10.2
Program Data

Program Data (f11zafe.d)

10.3
Program Results

Program Results (f11zafe.r)

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