f11zbf takes a symmetric coordinate storage (SCS) representation (see
Section 2.1.2 in the
F11 Chapter Introduction) of a real
sparse symmetric 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. Alternatively, duplicate entries may be summed, which facilitates spare matrix addition (see
Section 9). Any entries with zero values may optionally be removed.
f11zbf also returns a pointer array
istr to the starting address of each row in
.
None.
-
1:
– Integer
Input
-
On entry: , the order of the matrix .
Constraint:
.
-
2:
– Integer
Input/Output
-
On entry: the number of elements supplied in the array
a.
Constraint:
.
On exit: the number of elements with unique row and column indices.
-
3:
– Real (Kind=nag_wp) array
Input/Output
-
Note: the dimension of the array
a
must be at least
.
On entry: the nonzero elements of the lower triangular part of the real matrix . These may be in any order and there may be multiple nonzero elements with the same row and column indices.
On exit: the lower triangular 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:
– Integer array
Input/Output
-
Note: the dimension of the array
irow
must be at least
.
On entry: the row indices corresponding to the elements supplied in the array
a.
Constraint:
, for .
On exit: the first
nnz elements contain the row indices corresponding to the elements returned in the array
a.
-
5:
– Integer array
Input/Output
-
Note: the dimension of the array
icol
must be at least
.
On entry: the column indices corresponding to the elements supplied in the array
a.
Constraint:
, for .
On exit: the first
nnz elements contain the column indices corresponding to the elements returned in the array
a.
-
6:
– Character(1)
Input
-
On entry: indicates how elements in
a with duplicate row and column indices are to be treated.
- Duplicate entries are removed, only the first entry is kept.
- The relevant values in a are summed.
- The routine fails with on detecting a duplicate.
Constraint:
, or .
-
7:
– Character(1)
Input
-
On entry: indicates how elements in
a with zero values are to be treated.
- The entries are removed.
- The entries are kept.
- The routine fails with on detecting a zero.
Constraint:
, or .
-
8:
– Integer array
Output
-
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 element in
a plus one.
-
9:
– Integer array
Workspace
-
-
10:
– Integer
Input/Output
-
On entry:
ifail must be set to
,
or
to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value
or
is recommended. If message printing is undesirable, then the value
is recommended. Otherwise, the value
is recommended.
When the value or 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.
Background information to multithreading can be found in the
Multithreading documentation.
The time taken for a call to
f11zbf is the sum of two contributions, where one is proportional to
nnz and the other is proportional to
n.
Note that the resulting matrix may have either rows or columns with no entries. If row has no entries then .
Two sparse matrices can be added by concatenating the three pairs of SCS format arrays, representing the two matrices, and passing these new arrays to f11zbf, specifying that duplicates should be summed.