NAG FL Interface
f11zcf (real_rect_sort)
1
Purpose
f11zcf sorts the nonzero elements of a real sparse rectangular matrix, represented in coordinate storage or compressed column storage format.
2
Specification
Fortran Interface
Subroutine f11zcf ( |
m, n, nnz, a, irow, icol, istc, store, dup, zer, ifail) |
Integer, Intent (In) |
:: |
m, n, store |
Integer, Intent (Inout) |
:: |
nnz, irow(nnz), icol(nnz), istc(n+1), ifail |
Real (Kind=nag_wp), Intent (Inout) |
:: |
a(nnz) |
Character (1), Intent (In) |
:: |
dup, zer |
|
C Header Interface
#include <nag.h>
void |
f11zcf_ (const Integer *m, const Integer *n, Integer *nnz, double a[], Integer irow[], Integer icol[], Integer istc[], const Integer *store, const char *dup, const char *zer, Integer *ifail, const Charlen length_dup, const Charlen length_zer) |
|
C++ Header Interface
#include <nag.h> extern "C" {
void |
f11zcf_ (const Integer &m, const Integer &n, Integer &nnz, double a[], Integer irow[], Integer icol[], Integer istc[], const Integer &store, const char *dup, const char *zer, Integer &ifail, const Charlen length_dup, const Charlen length_zer) |
}
|
The routine may be called by the names f11zcf or nagf_sparse_real_rect_sort.
3
Description
f11zcf takes a coordinate storage (CS) representation (see
Section 2.1.1 in the
F11 Chapter Introduction), or compressed column storage (CCS) representation (see
Section 2.1.3 in the
F11 Chapter Introduction) of a real
by
sparse rectangular matrix
, and reorders the nonzero elements by increasing column index and increasing row index within each column.
Entries with duplicate row and column indices may be removed. Alternatively, duplicate entries may be summed, which facilitates sparse matrix addition (see
Section 9). Any entries with zero values may optionally be removed.
Both CS and CCS representations of the resulting matrix are output, which allows
f11zcf to be used to convert between the two formats (see
Section 9).
4
References
None.
5
Arguments
-
1:
– Integer
Input
-
On entry: , the number of rows in the matrix .
Constraint:
.
-
2:
– Integer
Input
-
On entry: , the number of columns in the matrix .
Constraint:
.
-
3:
– 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.
-
4:
– Real (Kind=nag_wp) array
Input/Output
-
On entry: the nonzero elements of the matrix . If , the elements may be in any order. If , the elements must be ordered by increasing column index. There may be multiple nonzero elements with the same row and column indices.
On exit: the nonzero elements ordered by increasing column index, and by increasing row index within each column. Each nonzero element has a unique row and column index.
-
5:
– Integer array
Input/Output
-
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.
-
6:
– Integer array
Input/Output
-
On entry: if
, the column indices corresponding to the elements supplied in the array
a.
If
,
icol need not be set.
Constraint:
if ,
, for .
On exit: the first
nnz elements contain the column indices corresponding to the elements returned in the array
a.
-
7:
– Integer array
Input/Output
-
On entry: if
, the starting address of each column, as supplied in the array
a.
If
,
istc need not be set.
Constraints:
if
,
- ;
- ;
- , for .
On exit: the starting address of each column, as returned in the array
a.
is the address of the last element in
a plus one.
-
8:
– Integer
Input
-
On entry: indicates which storage format the matrix
is represented with on entry.
- is represented in coordinate storage (CS) format using a, irow and icol.
- is represented in compressed column storage (CCS) format using a, irow and istc.
Constraint:
or .
-
9:
– 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 .
-
10:
– 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 .
-
11:
– Integer
Input/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 4 in the Introduction to the NAG Library FL Interface 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 argument, 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).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, .
Constraint: or .
-
On entry, .
Constraint: , or .
-
On entry, .
Constraint: , or .
-
On entry, , and .
Constraint: .
-
On entry, , and .
Constraint: if , then .
-
On entry, .
Constraint: .
-
On entry, , and .
Constraint:
, for
-
On entry, , and .
Constraint: .
-
On entry, a duplicate entry has been found in row and column .
-
On entry, a zero entry has been found in row and column .
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See
Section 9 in the Introduction to the NAG Library FL Interface for further information.
7
Accuracy
Not applicable.
8
Parallelism and Performance
f11zcf is not threaded in any implementation.
Note that the resulting matrix may have either rows or columns with no entries. If column has no entries then .
To transpose a matrix in CS format simply interchange
irow and
icol, and
m and
n. If you need the elements to be sorted, then pass these interchanged arrays to
f11zcf.
Two sparse matrices can be added by concatenating the three pairs of CS format arrays, representing the two matrices, and passing these new arrays to
f11zcf, specifying that duplicates should be summed. This functionality is illustrated in
Section 10.
This routine can be used to convert between CS and CCS formats. Use either format to pass
into
f11zcf, with the appropriate
store set. The resulting matrix is output in both formats using
a,
irow,
icol (for CS format) and
istc (for CCS format). This is illustrated in
Section 10.
10
Example
This example reads the CS representation of the real sparse matrices
and
, and finds their sum,
, displaying the ordered elements in both CS and CCS format. The order of rows within some columns of
are changed, and the matrix is input in CCS format to be re-sorted. The CS format is output to compare to the previous result. The matrix
is also sorted into row-major order by passing its transpose to
f11zcf.
10.1
Program Text
10.2
Program Data
10.3
Program Results