|
linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Sorces the elements of a CSR matrix in increasing order of their column indices within each row. More...
Public Member Functions | |
| subroutine | csort (n, a, ja, ia, values) |
Sorces the elements of a CSR matrix in increasing order of their column indices within each row.
| [in] | n | The number of rows in the matrix. |
| [in,out] | a | The non-zero values. |
| [in,out] | ja | An array of column indices of the elements in A. |
| [in] | ia | An array of pointers to the rows. |
| [in] | values | Idicates whether A must also be permuted. If false, A can be a dummy array. |
Definition at line 273 of file sparskit.f90.
| subroutine sparskit::csort::csort | ( | integer(int32), intent(in) | n, |
| real(real64), dimension(*), intent(inout) | a, | ||
| integer(int32), dimension(*), intent(inout) | ja, | ||
| integer(int32), dimension(*), intent(in) | ia, | ||
| logical, intent(in) | values ) |
Definition at line 273 of file sparskit.f90.