linalg 1.8.2
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Gets element A(i,j) of matrix A for any pair (i,j). More...
Public Member Functions | |
real(real64) function | getelm (i, j, a, ja, ia, iadd, sorted) |
Gets element A(i,j) of matrix A for any pair (i,j).
[in] | i | The row index. |
[in] | j | The column index. |
[in] | a | The non-zero elements of matrix A. |
[in] | ja | The column indices of matrix A. |
[in] | ia | The index in A where the requested row starts. |
[out] | iadd | The address of element A(i,j) in arrays A & JA, if found; else, zero if not found. |
[in] | sorted | Indicates whether the matrix is known to be sorted. |
Definition at line 236 of file sparskit.f90.
real(real64) function sparskit::getelm::getelm | ( | integer(int32), intent(in) | i, |
integer(int32), intent(in) | j, | ||
real(real64), dimension(*), intent(in) | a, | ||
integer(int32), dimension(*), intent(in) | ja, | ||
integer(int32), dimension(*), intent(in) | ia, | ||
integer(int32), intent(out) | iadd, | ||
logical, intent(in) | sorted ) |
Definition at line 236 of file sparskit.f90.