PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_sparse_real_gen_sort (f11za)
Purpose
nag_sparse_real_gen_sort (f11za) sorts the nonzero elements of a real sparse nonsymmetric matrix, represented in coordinate storage format.
Syntax
[
nz,
a,
irow,
icol,
istr,
ifail] = f11za(
n,
nz,
a,
irow,
icol,
dup,
zer)
[
nz,
a,
irow,
icol,
istr,
ifail] = nag_sparse_real_gen_sort(
n,
nz,
a,
irow,
icol,
dup,
zer)
Description
nag_sparse_real_gen_sort (f11za) takes a coordinate storage (CS) representation (see
Coordinate storage (CS) format 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.
nag_sparse_real_gen_sort (f11za) also returns a pointer
istr to the starting address of each row in
. This can be used to construct a compressed column storage (CCS) representation of the matrix (see
Further Comments).
References
None.
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
-
, the order of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
The number of nonzero elements in the matrix .
Constraint:
.
- 3:
– double array
-
The dimension of the array
a
must be at least
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.
- 4:
– int64int32nag_int array
-
The dimension of the array
irow
must be at least
The row indices corresponding to the nonzero elements supplied in the array
a.
Constraint:
, for .
- 5:
– int64int32nag_int array
-
The dimension of the array
icol
must be at least
The column indices corresponding to the nonzero elements supplied in the array
a.
Constraint:
, for .
- 6:
– string (length ≥ 1)
-
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 function fails on detecting a duplicate, with .
Constraint:
, or .
- 7:
– string (length ≥ 1)
-
Indicates how any elements with zero values in
a are to be treated.
- The entries are removed.
- The entries are kept.
- The function fails on detecting a zero, with .
Constraint:
, or .
Optional Input Parameters
None.
Output Parameters
- 1:
– int64int32nag_int scalar
-
The number of nonzero elements with unique row and column indices.
- 2:
– double array
-
The dimension of the array
a will be
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.
- 3:
– int64int32nag_int array
-
The dimension of the array
irow will be
The first
nz elements contain the row indices corresponding to the nonzero elements returned in the array
a.
- 4:
– int64int32nag_int array
-
The dimension of the array
icol will be
The first
nz elements contain the row indices corresponding to the nonzero elements returned in the array
a.
- 5:
– int64int32nag_int array
-
, 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.
- 6:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
On entry, | , |
or | , |
or | , or 'F', |
or | , or 'F'. |
-
-
On entry, a nonzero element has been supplied which does not lie within the matrix
, i.e., one or more of the following constraints has been violated:
for
-
-
On entry, and nonzero elements have been supplied which have duplicate row and column indices.
-
-
On entry, and at least one matrix element has been supplied with a zero coefficient value.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
Not applicable.
Further Comments
The time taken for a call to
nag_sparse_real_gen_sort (f11za) is proportional to
nz.
Note that the resulting matrix may have either rows or columns with no entries. If row has no entries then .
It is also possible to use this function 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
nag_sparse_real_gen_sort (f11za). On exit from
nag_sparse_real_gen_sort (f11za), the CCS representation of the matrix is then defined by arrays
a,
irow and
istr. This is illustrated in
Example.
Example
This example reads the CS representation of a real sparse matrix
, calls
nag_sparse_real_gen_sort (f11za) to reorder the nonzero elements, and outputs the original and the reordered representations. It then calls
nag_sparse_real_gen_sort (f11za) again with the alternative ordering, creating a CCS representation which is then passed to a function that computes a matrix norm for that representation.
Open in the MATLAB editor:
f11za_example
function f11za_example
fprintf('f11za example results\n\n');
n = int64(5);
nz = int64(15);
irow = zeros(nz,1,'int64');
icol = zeros(nz,1,'int64');
a(1:nz) = [4; -2; 1; -2; -3; 1; 0; 1; -1; 6; 2; 2; 1; 1; 2];
irow(1:nz) = [3; 5; 4; 4; 5; 1; 1; 3; 2; 5; 1; 4; 2; 3; 4];
icol(1:nz) = [1; 2; 4; 2; 5; 2; 5; 5; 4; 5; 1; 2; 3; 3; 5];
fprintf('Number of elements in original sparse matrix: %5d\n',nz);
disp('Original matrix ordering:');
fprintf(' k a(k) i_k j_k\n');
for j = 1:nz
fprintf('%4d%6.1f%5d%5d\n',j,a(j),irow(j),icol(j));
end
dup = 'S';
zero = 'R';
[nz, a, irow, icol, istr, ifail] = ...
f11za( ...
n, nz, a, irow, icol, dup, zero);
fprintf('\nNumber of elements in reordered sparse matrix: %5d\n',nz);
disp('New ordering (by row first):');
fprintf(' k a(k) i_k j_k\n');
for j = 1:nz
fprintf('%4d%6.1f%5d%5d\n',j,a(j),irow(j),icol(j));
end
f11za example results
Number of elements in original sparse matrix: 15
Original matrix ordering:
k a(k) i_k j_k
1 4.0 3 1
2 -2.0 5 2
3 1.0 4 4
4 -2.0 4 2
5 -3.0 5 5
6 1.0 1 2
7 0.0 1 5
8 1.0 3 5
9 -1.0 2 4
10 6.0 5 5
11 2.0 1 1
12 2.0 4 2
13 1.0 2 3
14 1.0 3 3
15 2.0 4 5
Number of elements in reordered sparse matrix: 11
New ordering (by row first):
k a(k) i_k j_k
1 2.0 1 1
2 1.0 1 2
3 1.0 2 3
4 -1.0 2 4
5 4.0 3 1
6 1.0 3 3
7 1.0 3 5
8 1.0 4 4
9 2.0 4 5
10 -2.0 5 2
11 3.0 5 5
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015