F11ZAF sorts the nonzero elements of a real sparse nonsymmetric matrix, represented in coordinate storage format.
F11ZAF takes a coordinate storage (CS) representation (see
Section 2.1.1 in the F11 Chapter Introduction) of a real
by
sparse nonsymmetric matrix
, 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
.
None.
- 1: N – INTEGERInput
On entry: , the order of the matrix .
Constraint:
.
- 2: NNZ – INTEGERInput/Output
On entry: the number of nonzero elements in the matrix .
Constraint:
.
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
.
On entry: the nonzero elements of the matrix . 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
.
On entry: the row indices corresponding to the nonzero elements supplied in the array
A.
Constraint:
, for .
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
.
On entry: the column indices corresponding to the nonzero elements supplied in the array
A.
Constraint:
, for .
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.
- The entries are removed.
- The relevant values in A are summed.
- The routine fails on detecting a duplicate, with .
Constraint:
, or .
- 7: ZER – CHARACTER(1)Input
On entry: indicates how any elements with zero values in
A are to be treated.
- The entries are removed.
- The entries are kept.
- The routine fails on detecting a zero, with .
Constraint:
, or .
- 8: ISTR() – INTEGER arrayOutput
On exit:
, for
, is the starting address in the arrays
A,
IROW and
ICOL of row
of the matrix
.
is the address of the last nonzero element in
plus one.
- 9: IWORK(N) – INTEGER arrayWorkspace
- 10: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. 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
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Not applicable.
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 has no entries then .